mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
29a50764d4
This PR adds experimental support for WebDriver BiDi by making use of chromium-bidi to implement the BiDi protocol. The tests are disabled on Windows due to flakiness (filed https://github.com/GoogleChromeLabs/chromium-bidi/issues/361).
12 lines
138 B
Markdown
12 lines
138 B
Markdown
---
|
|
sidebar_label: Handler
|
|
---
|
|
|
|
# Handler type
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export type Handler<T = unknown> = (event: T) => void;
|
|
```
|