CSSPropertyOpacity.d.ts 548 B

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