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

23 lines
388 B
Markdown

---
sidebar_label: LaunchOptions
---
# LaunchOptions type
#### Signature:
```typescript
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>;
};
```