UNPKG

@aurigma/design-atoms

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

18 lines (17 loc) 395 B
export declare enum RulersConfigUnit { Mm = "Mm", Inch = "Inch", Cm = "Cm", Point = "Point", Custom = "Custom" } export interface IRulersConfig { enabled?: boolean; unit: RulersConfigUnit; customUnitScale?: number; origin?: { X: number; Y: number; }; } export declare function getUnitScale(config: IRulersConfig): number;