CLI.(constructor)

Constructs a new instance of the CLI class

Signature

class CLI {
  constructor(
    opts?:
      | string
      | {
          cachePath?: string;
          scriptName?: string;
          prefixCommand?: {
            cmd: string;
            description: string;
          };
          allowCachePathOverride?: boolean;
          pinnedBrowsers?: Partial<
            Record<
              Browser,
              {
                buildId: string;
                skipDownload: boolean;
              }
            >
          >;
        },
    rl?: readline.Interface,
  );
}

Parameters

Parameter Type Description
opts string \| { cachePath?: string; scriptName?: string; prefixCommand?: { cmd: string; description: string; }; allowCachePathOverride?: boolean; pinnedBrowsers?: Partial<Record<[Browser](./browsers.browser.md), { buildId: string; skipDownload: boolean; }>>; } _(Optional)_
rl readline.Interface _(Optional)_