mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Add FilesTable #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
8
web/typings.d.ts
vendored
8
web/typings.d.ts
vendored
@ -1,5 +1,13 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user