puppeteer/website/versioned_docs/version-19.11.1/browsers-api/browsers.launchoptions.md

23 lines
388 B
Markdown
Raw Normal View History

---
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>;
};
```