mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
[Leaflet] on and off alias for L.DomEvent
This commit is contained in:
Vendored
+2
@@ -570,11 +570,13 @@ declare module L {
|
||||
* inside the listener will point to context, or to the element if not specified.
|
||||
*/
|
||||
static addListener(el: HTMLElement, type: string, fn: (e: Event) => void, context?: any): DomEvent;
|
||||
static on(el: HTMLElement, type: string, fn: (e: Event) => void, context?: any): DomEvent;
|
||||
|
||||
/**
|
||||
* Removes an event listener from the element.
|
||||
*/
|
||||
static removeListener(el: HTMLElement, type: string, fn: (e: Event) => void, context?: any): DomEvent;
|
||||
static off(el: HTMLElement, type: string, fn: (e: Event) => void, context?: any): DomEvent;
|
||||
|
||||
/**
|
||||
* Stop the given event from propagation to parent elements. Used inside the
|
||||
|
||||
Reference in New Issue
Block a user