feat: manage Chromium installation in engine
Engine CI / test (push) Waiting to run

This commit is contained in:
2026-08-30 18:51:35 +08:00
parent fef7459650
commit e3b0b2d576
17 changed files with 139 additions and 3 deletions
+5
View File
@@ -0,0 +1,5 @@
export interface BrowserInstallCommand {
command: string;
args: string[];
}
export declare function createBrowserInstallCommand(args: string[]): BrowserInstallCommand;