We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a1eab8 commit 1f2e8b5Copy full SHA for 1f2e8b5
src/lib/helpers/types.ts
@@ -60,9 +60,8 @@ export type TableRootProp = {
60
selectedAll: boolean;
61
selectedNone: boolean;
62
selectedSome: boolean;
63
- // columns: Array<Column> | number;
64
- columns: Record<PinkColumn['id'], PinkColumn>;
65
- // columnsMap: Record<PinkColumn['id'], PinkColumn>;
+ columns: Array<PinkColumn> | number;
+ columnsMap: Record<PinkColumn['id'], PinkColumn>;
66
toggle: (id: string) => void;
67
toggleAll: () => void;
68
addAvailableId: (id: string) => void;
0 commit comments