Files
2026-08-30 18:51:35 +08:00

6 lines
176 B
TypeScript

export interface BrowserInstallCommand {
command: string;
args: string[];
}
export declare function createBrowserInstallCommand(args: string[]): BrowserInstallCommand;