##// END OF EJS Templates
created typings for basic part of dojo and dijit further work is required to...
created typings for basic part of dojo and dijit further work is required to complete typings and separate them from this project dojo-typings replaced with @type/dojo, @type/dijit.

File last commit:

r2:8ec37bf1b4d1 default
r2:8ec37bf1b4d1 default
Show More
event.d.ts
22 lines | 598 B | video/mp2t | TypeScriptLexer
/* dojo/_base/event */
/**
* This module defines dojo DOM event API. Usually you should use dojo/on, and evt.stopPropagation() +
* evt.preventDefault(), rather than this module.
*/
interface EventModule {
/**
* normalizes properties on the event object including event
* bubbling methods, keystroke normalization, and x/y positions
*/
fix(evt: Event, sender: Element): Event;
/**
* prevents propagation and clobbers the default action of the
* passed event
*/
stop(evt: Event): void;
}
declare const dojoEvent: EventModule;
export = dojoEvent;