UNPKG

easy-css-transform-builder

Version:
12 lines (11 loc) 328 B
export declare type UnitType = 'none' | 'length' | 'angle'; export declare const UnitTypes: { [index: string]: UnitType; }; export interface TransformProp { name: string; unit?: UnitType; units?: UnitType[]; } export declare const transformProperties: TransformProp[]; export declare const properties: string[];