##// END OF EJS Templates
added djbase mixins declaration support
added djbase mixins declaration support

File last commit:

r2:8ec37bf1b4d1 default
r32:1174538197f6 v1.0.0-rc15 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;