(selector: string, callback: () => void)
| 34 | } |
| 35 | |
| 36 | export function bindAction(selector: string, callback: () => void) { |
| 37 | document.querySelector(selector)!.addEventListener('click', callback); |
| 38 | } |
| 39 | |
| 40 | export function profile(create: () => void, destroy: () => void, name: string) { |
| 41 | return function () { |
no test coverage detected
searching dependent graphs…