You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
528 B
21 lines
528 B
import $safeEls = require('./$safeEls'); |
|
import types = require('./types'); |
|
|
|
declare const $event: { |
|
on( |
|
element: $safeEls.El, |
|
event: string, |
|
selector: string, |
|
handler: types.AnyFn |
|
): void; |
|
on(element: $safeEls.El, event: string, handler: types.AnyFn): void; |
|
off( |
|
element: $safeEls.El, |
|
event: string, |
|
selector: string, |
|
handler: types.AnyFn |
|
): void; |
|
off(element: $safeEls.El, event: string, handler: types.AnyFn): void; |
|
}; |
|
|
|
export = $event;
|
|
|