2023-05-02 06:42:16 +00:00
|
|
|
import '@tanstack/react-table';
|
2022-01-04 12:16:09 +00:00
|
|
|
|
2023-05-02 06:42:16 +00:00
|
|
|
declare module '@tanstack/table-core' {
|
|
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
2022-01-04 12:16:09 +00:00
|
|
|
className?: string;
|
2023-05-02 06:42:16 +00:00
|
|
|
filter?: Filter<TData, TValue>;
|
|
|
|
width?: number | 'auto' | string;
|
2022-01-04 12:16:09 +00:00
|
|
|
}
|
2023-07-16 07:59:58 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
interface TableMeta<TData extends RowData> {
|
|
|
|
table?: string;
|
|
|
|
}
|
2022-01-04 12:16:09 +00:00
|
|
|
}
|