Files
ragflow/web/src/interfaces/database/base.ts
balibabu f9adeb9647 feat: add CreateFlowModal #918 (#1343)
### What problem does this PR solve?

feat: add CreateFlowModal #918

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2024-07-02 16:15:54 +08:00

7 lines
109 B
TypeScript

export interface ResponseType<T = any> {
retcode: number;
data: T;
retmsg: string;
status: number;
}