6a3e747ddbc6306a62925144ad35224fe5160ae764e3808bd9ae428c249a05bc3243f284a2d790944b42e2b76b04b072a0e17c9d163e47ffd12ef9478bc93e 543 B

123456789
  1. import Model from '../Model.js';
  2. import { AreaStyleOption } from '../../util/types.js';
  3. import { PathStyleProps } from 'zrender/lib/graphic/Path.js';
  4. export declare const AREA_STYLE_KEY_MAP: string[][];
  5. declare type AreaStyleProps = Pick<PathStyleProps, 'fill' | 'shadowBlur' | 'shadowOffsetX' | 'shadowOffsetY' | 'opacity' | 'shadowColor'>;
  6. declare class AreaStyleMixin {
  7. getAreaStyle(this: Model, excludes?: readonly (keyof AreaStyleOption)[], includes?: readonly (keyof AreaStyleOption)[]): AreaStyleProps;
  8. }
  9. export { AreaStyleMixin };