mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 05:19:39 +02:00
14 lines
369 B
TypeScript
14 lines
369 B
TypeScript
import '@tanstack/react-table';
|
|
|
|
declare module '@tanstack/table-core' {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
className?: string;
|
|
filter?: Filter<TData, TValue>;
|
|
width?: number | 'auto' | string;
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
interface TableMeta<TData extends RowData> {
|
|
table?: string;
|
|
}
|
|
}
|