@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
23 lines (22 loc) • 562 B
TypeScript
/**
* Specifies zoom quality of the displayed image.
* Zoom with higher quality requires more resources on the server-side than lower quality zoom.
*/
export declare enum ZoomQuality {
/**
* Low quality.
*/
low = 0,
/**
* Medium quality.
*/
medium = 1,
/**
* High quality.
*/
high = 2,
/**
* 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.
*/
shrinkHighStretchLow = 3
}