版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

7 líneas
446 B

  1. import Path, { PathStyleProps } from '../graphic/Path';
  2. import ZRImage, { ImageStyleProps } from '../graphic/Image';
  3. import TSpan, { TSpanStyleProps } from '../graphic/TSpan';
  4. declare type AllStyleOption = PathStyleProps | TSpanStyleProps | ImageStyleProps;
  5. export default function mapStyleToAttrs(updateAttr: (key: string, val: string | number) => void, style: AllStyleOption, el: Path | TSpan | ZRImage, forceUpdate: boolean): void;
  6. export {};