##// 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
text.d.ts
15 lines | 504 B | video/mp2t | TypeScriptLexer
cin
created typings for basic part of dojo and dijit further work is required to...
r2 import { GenericObject } from "./interfaces";
interface Cache {
(module: string | GenericObject, url: string, value?: string | { value: string, sanitize?: boolean }): string;
}
interface Text {
/**
* the dojo/text caches it's own resources because of dojo.cache
*/
dynamic: boolean;
normalize(id: string, toAbsMid: Function): string; /* TODO: Align with loader api */
load(id: string, parentRequire: Function, loaded: Function): void; /* TODO: Align with loader api */
}