puppeteer/docs/api/puppeteer.handler.md
Alex Rudenko 29a50764d4
chore: add BiDi integration for Chromium (#9410)
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).
2022-12-20 14:37:31 +00:00

12 lines
138 B
Markdown

---
sidebar_label: Handler
---
# Handler type
#### Signature:
```typescript
export type Handler<T = unknown> = (event: T) => void;
```