RAGflow/web/typings.d.ts

14 lines
239 B
TypeScript
Raw Normal View History

2025-03-24 11:19:28 +08:00
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;
}
}