2f935e3e0de6bbffe62a6e37a840d11b98ce82690c5623bee7e17ee61fbc4d38a5dd6bb3eb604dc1fdd8bd22a790e3a97c4006a9a38c31e15c013eea56485c 446 B

123456
  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 {};