1234567891011121314151617181920 |
- import { CSSKeywordValue, CSSRGB, CSSUnitValue, UnitType } from './cssom';
- /**
- * CSSKeywordValue
- */
- export declare const unsetKeywordValue: CSSKeywordValue;
- export declare const initialKeywordValue: CSSKeywordValue;
- export declare const inheritKeywordValue: CSSKeywordValue;
- export declare const getOrCreateKeyword: (name: string) => CSSKeywordValue;
- /**
- * CSSColor
- */
- export declare const noneColor: CSSRGB;
- export declare const transparentColor: CSSRGB;
- export declare const getOrCreateRGBA: {
- (...args: any[]): any;
- cache: Map<any, any>;
- };
- export declare const getOrCreateUnitValue: (value: number, unitOrName?: UnitType | string) => CSSUnitValue;
- export declare const PECENTAGE_50: CSSUnitValue;
- //# sourceMappingURL=CSSStyleValuePool.d.ts.map
|