##// END OF EJS Templates
added type parameter to Evented<T>, T is the event map...
added type parameter to Evented<T>, T is the event map _WidgetBase emit() and on() are now more strict, they accept only valid event names, or explicit `any` added _setValueAttr method to _FormMixin

File last commit:

r0:ab570232df7d default
r10:641c326d4bb4 v1.0.2 default
Show More
entities.d.ts
30 lines | 643 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 declare namespace dojox {
namespace html {
namespace entities {
type CharCodeAndEntityName = [string, string];
interface Entities {
html: CharCodeAndEntityName[];
latin: CharCodeAndEntityName[];
/**
* Function to obtain an entity encoding for a specified character
*/
decode(str: string, map?: CharCodeAndEntityName[]): string;
/**
* Function to obtain an entity encoding for a specified character
*/
encode(str: string, map?: CharCodeAndEntityName[]): string;
}
}
}
}
declare module 'dojox/html/entities' {
const entities: dojox.html.entities.Entities;
export = entities;
}