puppeteer/docs/api/puppeteer.handler.md
jrandolf f8de7b1273
chore: bundle vendor code (#9016)
This PR removes the manual vendoring process. Third party code can now
be updated using the typical NPM pipeline with types/code bundling done
through Rollup.
2022-09-28 13:03:19 +02:00

12 lines
135 B
Markdown

---
sidebar_label: Handler
---
# Handler type
**Signature:**
```typescript
declare type Handler<T = any> = (event?: T) => void;
```