| 39 | } |
| 40 | |
| 41 | interface PageEvents extends PuppeteerPageEvents { |
| 42 | devtoolsAggregatedIssue: DevTools.AggregatedIssue; |
| 43 | uncaughtError: UncaughtError; |
| 44 | } |
| 45 | |
| 46 | export type ListenerMap<EventMap extends PageEvents = PageEvents> = { |
| 47 | [K in keyof EventMap]?: (event: EventMap[K]) => void; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…