CSSPropertyAngle.d.ts 595 B

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