ColumnDef.ts (190B)
1 import { ReactNode } from "react"; 2 3 export type ColumnDef<T> = { 4 key: React.Key, 5 header: string, 6 render: (row: T) => ReactNode 7 }; 8 9 export type RowDef<T> = { 10 key: (row: T) => React.Key 11 };