15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
export class BaseSVGFactory {
|
|
create(width: any, height: any, skipDimensions?: boolean): void;
|
|
createElement(type: any): void;
|
|
/**
|
|
* @ignore
|
|
*/
|
|
_createSVG(type: any): void;
|
|
}
|
|
export class DOMSVGFactory extends BaseSVGFactory {
|
|
/**
|
|
* @ignore
|
|
*/
|
|
_createSVG(type: any): any;
|
|
}
|