CSSPropertyZIndex.d.ts 541 B

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