mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
23 lines
797 B
Markdown
23 lines
797 B
Markdown
---
|
|
sidebar_label: BrowserEvents
|
|
---
|
|
|
|
# BrowserEvents interface
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export interface BrowserEvents extends Record<EventType, unknown>
|
|
```
|
|
|
|
**Extends:** Record<[EventType](./puppeteer.eventtype.md), unknown>
|
|
|
|
## Properties
|
|
|
|
| Property | Modifiers | Type | Description | Default |
|
|
| --------------- | --------- | ------------------------------- | ----------- | ------- |
|
|
| disconnected | | undefined | | |
|
|
| targetchanged | | [Target](./puppeteer.target.md) | | |
|
|
| targetcreated | | [Target](./puppeteer.target.md) | | |
|
|
| targetdestroyed | | [Target](./puppeteer.target.md) | | |
|