##// END OF EJS Templates
Added tag v1.0.7 for changeset deb0ed6fb680
Added tag v1.0.7 for changeset deb0ed6fb680

File last commit:

r2:8ec37bf1b4d1 default
r54:3a881e2e1ef5 default
Show More
manager.d.ts
22 lines | 744 B | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 import dijit = require("../main");
import _WidgetBase = require("../_WidgetBase");
declare module "dojo/_base/kernel" {
interface Dijit {
byId(id: string | _WidgetBase): _WidgetBase;
getUniqueId(widgetType: string): string;
findWidgets(root: Node, skipNode?: Node): _WidgetBase[];
byNode(node: Node): _WidgetBase;
getEnclosingWidgets(node: Node): _WidgetBase;
/**
* defaultDuration: Integer
* The default fx.animation speed (in ms) to use for all Dijit
* transitional fx.animations, unless otherwise specified
* on a per-instance basis. Defaults to 200, overrided by
* `djConfig.defaultDuration`
*/
defaultDuration: number;
}
}
export = dijit;