##// END OF EJS Templates
added type parameter to dojo.store.api.SortInformation,...
added type parameter to dojo.store.api.SortInformation, added sort function to query sort option

File last commit:

r0:ab570232df7d default
r20:1c7650c17856 v1.0.8 default
Show More
registry.d.ts
14 lines | 335 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 declare namespace dojox {
namespace gfx {
interface Registry {
byId(id: string): dojox.gfx.shape.Shape;
dispose(shape: dojox.gfx.shape.Shape, recurse?: boolean): void;
register(shape: dojox.gfx.shape.Shape): string;
}
}
}
declare module 'dojox/gfx/registry' {
const registry: dojox.gfx.Registry;
export = registry;
}