forked from ard/ruoyi-api

‘liusuyi’
2023-08-18 268c9720677e3a330c9d53c9f4b9f026869e1583
1
2
3
4
5
6
7
8
9
10
import Model from '../Model.js';
import { LineStyleOption } from '../../util/types.js';
import { PathStyleProps } from 'zrender/lib/graphic/Path.js';
export declare const LINE_STYLE_KEY_MAP: string[][];
declare type LineStyleKeys = 'lineWidth' | 'stroke' | 'opacity' | 'shadowBlur' | 'shadowOffsetX' | 'shadowOffsetY' | 'shadowColor' | 'lineDash' | 'lineDashOffset' | 'lineCap' | 'lineJoin' | 'miterLimit';
export declare type LineStyleProps = Pick<PathStyleProps, LineStyleKeys>;
declare class LineStyleMixin {
    getLineStyle(this: Model, excludes?: readonly (keyof LineStyleOption)[]): LineStyleProps;
}
export { LineStyleMixin };