ragflow / ragflow-main /web /typings.d.ts
pandaall's picture
Upload 1223 files
ec730cc verified
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;
}
}