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