homebox/frontend/components/Item/View/Table.types.ts

11 lines
251 B
TypeScript

import type { ItemSummary } from "~~/lib/api/types/data-contracts";
export type TableHeader = {
text: string;
value: keyof ItemSummary;
sortable?: boolean;
align?: "left" | "center" | "right";
};
export type TableData = Record<string, any>;