| 12345678910111213 |
- import type { CSSUnitValue } from '../cssom';
- import type { CSSProperty } from '../CSSProperty';
- import { mergeNumbers } from '../parser/numeric';
- export declare class CSSPropertyNumber implements Partial<CSSProperty<CSSUnitValue, number>> {
- mixer: typeof mergeNumbers;
- parser: {
- (...args: any[]): any;
- cache: Map<any, any>;
- };
- parserWithCSSDisabled: any;
- calculator(name: string, oldParsed: CSSUnitValue, computed: CSSUnitValue): number;
- }
- //# sourceMappingURL=CSSPropertyNumber.d.ts.map
|