CSSStyleValuePool.d.ts 760 B

1234567891011121314151617181920
  1. import { CSSKeywordValue, CSSRGB, CSSUnitValue, UnitType } from './cssom';
  2. /**
  3. * CSSKeywordValue
  4. */
  5. export declare const unsetKeywordValue: CSSKeywordValue;
  6. export declare const initialKeywordValue: CSSKeywordValue;
  7. export declare const inheritKeywordValue: CSSKeywordValue;
  8. export declare const getOrCreateKeyword: (name: string) => CSSKeywordValue;
  9. /**
  10. * CSSColor
  11. */
  12. export declare const noneColor: CSSRGB;
  13. export declare const transparentColor: CSSRGB;
  14. export declare const getOrCreateRGBA: {
  15. (...args: any[]): any;
  16. cache: Map<any, any>;
  17. };
  18. export declare const getOrCreateUnitValue: (value: number, unitOrName?: UnitType | string) => CSSUnitValue;
  19. export declare const PECENTAGE_50: CSSUnitValue;
  20. //# sourceMappingURL=CSSStyleValuePool.d.ts.map