mirror of
https://github.com/portainer/portainer.git
synced 2026-06-23 04:00:21 +00:00
11 lines
257 B
TypeScript
11 lines
257 B
TypeScript
import '@tanstack/react-table';
|
|
|
|
declare module '@tanstack/react-table' {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
className?: string;
|
|
filter?: Filter<TData, TValue>;
|
|
width?: number | 'auto' | string;
|
|
minWidth?: string;
|
|
}
|
|
}
|