mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-18 21:57:27 +08:00
### What problem does this PR solve? feat: add CreateFlowModal #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
export interface ResponseType<T = any> {
|
|
retcode: number;
|
|
data: T;
|
|
retmsg: string;
|
|
status: number;
|
|
}
|