ragflow / web /typings.d.ts
Starowo's picture
Upload 1411 files
b9fe2b4 verified
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;
}
}