##// END OF EJS Templates
corrected i18n, css modules to support requirejs optimizer...
corrected i18n, css modules to support requirejs optimizer i18n bundles now conforms js modules with default exports (breaking change!)

File last commit:

r15:8ef85ad13241 default
r53:deb0ed6fb680 v1.0.7 default
Show More
kernel.d.ts
74 lines | 1.8 KiB | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 /* dojo/_base/kernel */
cin
Working on dojo typings
r15 import { Config } from './config';
cin
created typings for basic part of dojo and dijit further work is required to...
r2
declare namespace dojo {
interface Dijit {
}
interface Dojox {
}
interface Dojo {
config: Config;
global: any;
cin
Working on dojo typings
r15
cin
created typings for basic part of dojo and dijit further work is required to...
r2 dijit: Dijit;
dojox: Dojox;
/**
* a map from a name used in a legacy module to the (global variable name, object addressed by that name)
* always map dojo, dijit, and dojox
*/
scopeMap: {
[scope: string]: [string, any];
dojo: [string, Dojo];
dijit: [string, Dijit];
dojox: [string, Dojox];
};
baseUrl: string;
isAsync: boolean;
locale: string;
version: {
major: number;
minor: number;
patch: number;
flag: string;
revision: number;
toString(): string;
};
/**
* A legacy method created for use exclusively by internal Dojo methods. Do not use this method
* directly unless you understand its possibly-different implications on the platforms your are targeting.
*/
eval(scriptText: string): any;
exit(exitcode?: number): void;
/**
* Log a debug message to indicate that a behavior has been
* deprecated.
*/
deprecated(behaviour: string, extra?: string, removal?: string): void;
/**
* Marks code as experimental.
*/
experimental(moduleName: string, extra?: string): void;
/**
* Returns a URL relative to a module.
*/
moduleUrl(module: string, url?: string): any;
/**
* for backward compatibility with layers built with 1.6 tooling
*/
_hasResource: any;
}
}
declare const dojo: dojo.Dojo;
export = dojo;