ragflow / web /typings.d.ts
balibabu
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)
84f80c5
raw
history blame
155 Bytes
import 'umi/typings';
declare module 'lodash';
// declare type Nullable<T> = T | null; invalid
declare global {
type Nullable<T> = T | null;
}