##// END OF EJS Templates
fixed dependencies
fixed dependencies

File last commit:

r2:8ec37bf1b4d1 default
r3:fb4d13ff05ae default
Show More
event.d.ts
22 lines | 598 B | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 /* 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;