Skip to content

Commit 1f2e8b5

Browse files
committed
fix: types.
1 parent 5a1eab8 commit 1f2e8b5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/lib/helpers/types.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,8 @@ export type TableRootProp = {
6060
selectedAll: boolean;
6161
selectedNone: boolean;
6262
selectedSome: boolean;
63-
// columns: Array<Column> | number;
64-
columns: Record<PinkColumn['id'], PinkColumn>;
65-
// columnsMap: Record<PinkColumn['id'], PinkColumn>;
63+
columns: Array<PinkColumn> | number;
64+
columnsMap: Record<PinkColumn['id'], PinkColumn>;
6665
toggle: (id: string) => void;
6766
toggleAll: () => void;
6867
addAvailableId: (id: string) => void;

0 commit comments

Comments
 (0)