easy-css-transform-builder
Version:
Easily build CSS transform values with JavaScript.
12 lines (11 loc) • 328 B
TypeScript
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[];