puppeteer/website/versioned_docs/version-21.3.1/api/puppeteer.eventswithwildcard.md

15 lines
230 B
Markdown
Raw Normal View History

---
sidebar_label: EventsWithWildcard
---
# EventsWithWildcard type
#### Signature:
```typescript
export type EventsWithWildcard<Events extends Record<EventType, unknown>> =
Events & {
'*': Events[keyof Events];
};
```