feat: 新增app管理和文件管理

This commit is contained in:
2024-10-06 20:10:20 +08:00
parent 1f81d3400c
commit 477ad00d86
18 changed files with 713 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
// Generated by dts-bundle-generator v9.5.1
export type RouterCode = {
id: string;
path: string;
key: string;
active: boolean;
project: string;
code: string;
exec: string;
type: RouterCodeType;
middleware: string[];
next: string;
data: any;
validator: any;
};
declare enum RouterCodeType {
route = "route",
middleware = "middleware"
}
declare enum CodeStatus {
running = "running",
stop = "stop",
fail = "fail"
}
export type CodeManager = {
fn?: any;
status?: CodeStatus;
errorMsg?: string;
lock?: boolean;
} & Partial<RouterCode>;
export interface ContainerData {
style?: {
[key: string]: string;
};
className?: string;
showChild?: boolean;
shadowRoot?: boolean;
}
export {};