mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: add CreateFlowModal #918 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
export interface ResponseType {
|
||||
export interface ResponseType<T = any> {
|
||||
retcode: number;
|
||||
data: any;
|
||||
data: T;
|
||||
retmsg: string;
|
||||
status: number;
|
||||
}
|
||||
|
||||
@ -42,3 +42,16 @@ export interface IFlow {
|
||||
update_time: number;
|
||||
user_id: string;
|
||||
}
|
||||
|
||||
export interface IFlowTemplate {
|
||||
avatar: string;
|
||||
canvas_type: string;
|
||||
create_date: string;
|
||||
create_time: number;
|
||||
description: string;
|
||||
dsl: DSL;
|
||||
id: string;
|
||||
title: string;
|
||||
update_date: string;
|
||||
update_time: number;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user