elmer-ui-core
Version:
web app framework
15 lines (14 loc) • 575 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnumHTMLElementInsertMethod = exports.HTMLElementInsertMethod = void 0;
var HTMLElementInsertMethod = (function () {
function HTMLElementInsertMethod() {
this.afterBegin = "afterBegin";
this.afterEnd = "afterEnd";
this.beforeBegin = "beforeBegin";
this.beforeEnd = "beforeEnd";
}
return HTMLElementInsertMethod;
}());
exports.HTMLElementInsertMethod = HTMLElementInsertMethod;
exports.EnumHTMLElementInsertMethod = new HTMLElementInsertMethod();