(eventInfo: EventInfo)
| 68 | export function createEarlyJsactionData(container: HTMLElement) { |
| 69 | const q: EventInfo[] = []; |
| 70 | const d = (eventInfo: EventInfo) => { |
| 71 | q.push(eventInfo); |
| 72 | }; |
| 73 | const h = (event: Event) => { |
| 74 | d( |
| 75 | createEventInfoFromParameters( |
no test coverage detected