feat: support select child packer

This commit is contained in:
ReaJason
2026-06-27 18:40:21 +08:00
parent 52004a2e13
commit 9aab9f0a4b
16 changed files with 842 additions and 509 deletions
+6 -1
View File
@@ -98,7 +98,12 @@ export interface MainConfig {
};
}
export type PackerConfig = Array<string>;
export interface PackerOption {
name: string;
children: string[];
}
export type PackerConfig = Array<PackerOption>;
export interface MemShellGenerateResponse {
memShellResult: MemShellResult;