版博士V2.0程序
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

13 righe
379 B

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