@nodegui/nodegui
Version:
A cross-platform library to build native desktop apps.
13 lines (12 loc) • 645 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnchorPoint = void 0;
var AnchorPoint;
(function (AnchorPoint) {
AnchorPoint[AnchorPoint["AnchorLeft"] = 0] = "AnchorLeft";
AnchorPoint[AnchorPoint["AnchorHorizontalCenter"] = 1] = "AnchorHorizontalCenter";
AnchorPoint[AnchorPoint["AnchorRight"] = 2] = "AnchorRight";
AnchorPoint[AnchorPoint["AnchorTop"] = 3] = "AnchorTop";
AnchorPoint[AnchorPoint["AnchorVerticalCenter"] = 4] = "AnchorVerticalCenter";
AnchorPoint[AnchorPoint["AnchorBottom"] = 5] = "AnchorBottom";
})(AnchorPoint = exports.AnchorPoint || (exports.AnchorPoint = {}));