##// END OF EJS Templates
updated _WidgetBase typings, added support for the generic type parameter to the constructor
updated _WidgetBase typings, added support for the generic type parameter to the constructor

File last commit:

r0:ab570232df7d default
r1:d55cc09feba1 default
Show More
registry.d.ts
14 lines | 335 B | video/mp2t | TypeScriptLexer
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;
}