mirror of
https://github.com/rustfs/console.git
synced 2026-09-01 15:17:45 +08:00
10 lines
243 B
TypeScript
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
|
|
}
|
|
}
|