12345678910111213141516171819202122232425262728293031 |
- import * as readline from 'readline';
- import { Browser } from './browser-data/browser-data.js';
- export declare class CLI {
- #private;
- constructor(cachePath?: string, rl?: readline.Interface);
- run(argv: string[]): Promise<void>;
- }
- export declare function makeProgressCallback(browser: Browser, buildId: string): (downloadedBytes: number, totalBytes: number) => void;
|