mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
import { StoreNodeItemType } from '../workflow/type';
|
|
import { StoreEdgeItemType } from '../workflow/type/edge';
|
|
import { AppChatConfigType, AppSchema } from './type';
|
|
|
|
export type AppVersionSchemaType = {
|
|
_id: string;
|
|
appId: string;
|
|
time: Date;
|
|
nodes: AppSchema['modules'];
|
|
edges: AppSchema['edges'];
|
|
chatConfig: AppSchema['chatConfig'];
|
|
};
|