@antv/g-svg
Version:
A renderer implemented by SVG
17 lines • 652 B
TypeScript
import { AbstractRendererPlugin, GlobalRuntime } from '@antv/g-lite';
import { ElementSVG } from './components/ElementSVG';
import type { SVGRendererPluginOptions } from './interfaces';
export * from './DefaultElementLifeCycleContribution';
export * from './shapes/paths';
export * from './SVGRendererPlugin';
export * from './interfaces';
export * from './utils/dom';
export { ElementSVG };
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options?: Partial<SVGRendererPluginOptions>);
init(runtime: GlobalRuntime): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map