Files
rustfs-console/types/tanstack-table.d.ts
T
2025-11-03 10:47:03 +08:00

10 lines
243 B
TypeScript

import type { RowData } from '@tanstack/vue-table'
declare module '@tanstack/vue-table' {
interface ColumnMeta<TData extends RowData, TValue> {
width?: string | number
minWidth?: string | number
maxWidth?: string | number
}
}