ragflow/web/typings.d.ts
balibabu fce14ee187
feat: add loading to ChatContainer and set font family to inter and add tooltip to Form.Item and download documents on the document list page (#136)
* feat: download documents on the document list page

* feat: add tooltip to Form.Item

* feat: set font family to inter

* feat: add loading to ChatContainer
2024-03-20 18:20:42 +08:00

9 lines
155 B
TypeScript

import 'umi/typings';
declare module 'lodash';
// declare type Nullable<T> = T | null; invalid
declare global {
type Nullable<T> = T | null;
}