gohttpdUi/types/componentType/table.d.ts

11 lines
184 B
TypeScript

declare type TableColumn = {
field: string
label?: string
} & Recordable
declare type TableSlotDefault = {
row: Recordable
column: TableColumn
$index: number
} & Recordable