UNPKG

sanity-plugin-table

Version:

Table schema type and input component for Sanity CMS

19 lines (18 loc) 294 B
interface RootProps { level: number; markers: any[]; type: { title: string; description: string; options: Record<string, any>; }; value: { rows: TableRow[]; }; onChange: (...any) => any; } interface TableRow { _type: string; _key: string; cells: string[]; }