6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
export interface BrowserInstallCommand {
|
|
command: string;
|
|
args: string[];
|
|
}
|
|
export declare function createBrowserInstallCommand(args: string[]): BrowserInstallCommand;
|