add test and update router version

This commit is contained in:
2024-10-15 19:36:30 +08:00
parent 64f89b60dc
commit ce576ebaf1
5 changed files with 406 additions and 630 deletions

View File

@@ -5,7 +5,10 @@ export interface AppData {
files: { name: string; path: string }[];
}
export type AppType = 'web-single' | 'web-module';
export enum AppStatus {
running = 'running',
stop = 'stop',
}
export type App = Partial<InstanceType<typeof AppModel>>;
/**