UNPKG

379 BTypeScriptView Raw
1import Path from '../graphic/Path';
2import ZRImage from '../graphic/Image';
3import TSpan from '../graphic/TSpan';
4export interface SVGProxy<T> {
5 brush(el: T): void;
6}
7declare const svgPath: SVGProxy<Path>;
8export { svgPath as path };
9declare const svgImage: SVGProxy<ZRImage>;
10export { svgImage as image };
11declare const svgText: SVGProxy<TSpan>;
12export { svgText as text };