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.

24 lines 821 B
/** * Specifies zoom quality of the displayed image. * Zoom with higher quality requires more resources on the server-side than lower quality zoom. */ export var ZoomQuality; (function (ZoomQuality) { /** * Low quality. */ ZoomQuality[ZoomQuality["low"] = 0] = "low"; /** * Medium quality. */ ZoomQuality[ZoomQuality["medium"] = 1] = "medium"; /** * High quality. */ ZoomQuality[ZoomQuality["high"] = 2] = "high"; /** * This mode enables server-side high quality resize in the case when zoom value is lower than 1.0, otherwise the image is resized on the client. */ ZoomQuality[ZoomQuality["shrinkHighStretchLow"] = 3] = "shrinkHighStretchLow"; })(ZoomQuality || (ZoomQuality = {})); //# sourceMappingURL=ZoomQuality.js.map