@nodegui/nodegui
Version:
A cross-platform library to build native desktop apps.
10 lines (9 loc) • 512 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AspectRatioMode = void 0;
var AspectRatioMode;
(function (AspectRatioMode) {
AspectRatioMode[AspectRatioMode["IgnoreAspectRatio"] = 0] = "IgnoreAspectRatio";
AspectRatioMode[AspectRatioMode["KeepAspectRatio"] = 1] = "KeepAspectRatio";
AspectRatioMode[AspectRatioMode["KeepAspectRatioByExpanding"] = 2] = "KeepAspectRatioByExpanding";
})(AspectRatioMode = exports.AspectRatioMode || (exports.AspectRatioMode = {}));