puppeteer/docs/browsers-api/browsers.launchoptions.md
2023-04-06 14:23:10 +02:00

388 B

sidebar_label
LaunchOptions

LaunchOptions type

Signature:

export type LaunchOptions = {
  executablePath: string;
  pipe?: boolean;
  dumpio?: boolean;
  args?: string[];
  env?: Record<string, string | undefined>;
  handleSIGINT?: boolean;
  handleSIGTERM?: boolean;
  handleSIGHUP?: boolean;
  detached?: boolean;
  onExit?: () => Promise<void>;
};