ragflow / web /typings.d.ts
balibabu
Feat: Add FilesTable #3221 (#4491)
d1bf860
raw
history blame contribute delete
239 Bytes
import '@tanstack/react-table';
declare module 'lodash';
declare global {
type Nullable<T> = T | null;
}
declare module '@tanstack/react-table' {
interface ColumnMeta {
headerClassName?: string;
cellClassName?: string;
}
}