| 19 | declare module '@tanstack/react-table' { |
| 20 | // eslint-disable-next-line @typescript-eslint/no-unused-vars |
| 21 | interface ColumnMeta<TData extends RowData, TValue> { |
| 22 | label?: string; // Add your custom property here, making it optional with '?' if needed |
| 23 | // You can add other custom properties here as well |
| 24 | // exampleProp?: boolean; |
| 25 | enableDragging?: boolean; |
| 26 | } |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected