UNPKG

svelte-ux

Version:

- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`

12 lines (11 loc) 406 B
import type { ColumnDef } from '../types/table'; import type tableOrderStore from '../stores/tableOrderStore'; type TableCellOptions = { column?: ColumnDef; rowData?: any; rowIndex?: number; order?: ReturnType<typeof tableOrderStore>; overrides?: Partial<ColumnDef>; }; export declare function tableCell(node: HTMLElement, options: TableCellOptions): SvelteActionReturnType; export {};