( target: EventTargets, events: string | string[], callback: AnyFunction, options?: AddEventListenerOptions )
| 16 | */ |
| 17 | export interface EventBinderObject { |
| 18 | bind( target: EventTargets, events: string | string[], callback: AnyFunction, options?: AddEventListenerOptions ): void |
| 19 | unbind( target: EventTarget | EventTarget[], events: string | string[], callback?: AnyFunction ): void; |
| 20 | dispatch<T>( target: EventTarget, event: string, detail?: T ): void; |
| 21 | destroy(): void; |
no outgoing calls
no test coverage detected