export declare const ScaleMethods: {
/**
* Manual; no scaling is performed
*
*/
readonly Manual: "manual";
/**
* Letterboxed; content is scaled to design aspect ratio
*
*/
readonly Fit: "fit";
/**
* Canvas is resized to fit minimum design resolution; content is scaled to design aspect ratio
*
*/
readonly FillMin: "fill-min";
/**
* Canvas is resized to fit maximum design resolution; content is scaled to design aspect ratio
*
*/
readonly FillMax: "fill-max";
/**
* Canvas width & height is resized to fit; content is scaled to design aspect ratio
*
*/
readonly Flex: "flex";
/**
* Canvas width is resized to fit; content is scaled to design aspect ratio
*
*/
readonly FlexWidth: "flex-width";
/**
* Canvas height is resized to fit; content is scaled to design aspect ratio
*
*/
readonly FlexHeight: "flex-height";
/**
* Canvas is resized to fit; content is scaled to screen aspect ratio
*
*/
readonly Stretch: "stretch";
};
export type ScaleMethod = (typeof ScaleMethods)[keyof typeof ScaleMethods];
//# sourceMappingURL=scaleMethods.d.ts.map