mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
9 lines
233 B
TypeScript
9 lines
233 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;
|
|
}
|
|
}
|