mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-01 08:15:44 +08:00
### What problem does this PR solve? Feat: Display release status in agent version history. ### Type of change - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: balibabu <assassin_cike@163.com>
13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
type Nullable<T> = T | null;
|
|
|
|
declare module '*.md' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module 'jsoneditor' {
|
|
const JSONEditor: any;
|
|
export default JSONEditor;
|
|
export = JSONEditor;
|
|
}
|