mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-07-21 07:01:04 +08:00
7 lines
102 B
TypeScript
7 lines
102 B
TypeScript
|
|
export interface ResponseType {
|
||
|
|
retcode: number;
|
||
|
|
data: any;
|
||
|
|
retmsg: string;
|
||
|
|
status: number;
|
||
|
|
}
|