UNPKG

533 BTypeScriptView Raw
1import type { DisplayObject } from '../../display-objects';
2import type { CSSProperty } from '../CSSProperty';
3import type { CSSUnitValue } from '../cssom';
4import { parseDimensionArray, mergeDimensionList } from '../parser';
5export declare class CSSPropertyLineDash implements Partial<CSSProperty<CSSUnitValue[], CSSUnitValue[]>> {
6 parser: typeof parseDimensionArray;
7 mixer: typeof mergeDimensionList;
8 calculator(name: string, oldParsed: CSSUnitValue[], parsed: CSSUnitValue[], object: DisplayObject): CSSUnitValue[];
9}