mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import { AppTypeEnum } from './constants';
|
|
import { AppSchema } from './type';
|
|
|
|
export type CreateAppParams = {
|
|
name?: string;
|
|
avatar?: string;
|
|
type?: `${AppTypeEnum}`;
|
|
modules: AppSchema['modules'];
|
|
};
|
|
|
|
export interface AppUpdateParams {
|
|
name?: string;
|
|
type?: `${AppTypeEnum}`;
|
|
avatar?: string;
|
|
intro?: string;
|
|
modules?: AppSchema['modules'];
|
|
permission?: AppSchema['permission'];
|
|
}
|