This commit is contained in:
2025-11-07 09:30:45 +08:00
parent ecdb4321e8
commit fa8ebffac9
1478 changed files with 188959 additions and 0 deletions

13
web/typings.d.ts vendored Normal file
View File

@@ -0,0 +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;
}
}