mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-05-15 02:48:16 +08:00

* 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
9 lines
155 B
TypeScript
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;
|
|
}
|