feat: support select child packer

This commit is contained in:
ReaJason
2026-06-28 21:22:31 +08:00
parent a267048ed3
commit f19b1be9d4
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;