CSSPropertyNumber.d.ts 524 B

12345678910111213
  1. import type { CSSUnitValue } from '../cssom';
  2. import type { CSSProperty } from '../CSSProperty';
  3. import { mergeNumbers } from '../parser/numeric';
  4. export declare class CSSPropertyNumber implements Partial<CSSProperty<CSSUnitValue, number>> {
  5. mixer: typeof mergeNumbers;
  6. parser: {
  7. (...args: any[]): any;
  8. cache: Map<any, any>;
  9. };
  10. parserWithCSSDisabled: any;
  11. calculator(name: string, oldParsed: CSSUnitValue, computed: CSSUnitValue): number;
  12. }
  13. //# sourceMappingURL=CSSPropertyNumber.d.ts.map