mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
159513c8db
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
23 lines
388 B
Markdown
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>;
|
|
};
|
|
```
|