Enabling shorter import paths [automatic]

This commit is contained in:
ts_ci
2021-03-02 11:20:31 +00:00
parent 069262c83d
commit 7dec6c7ebe
102 changed files with 20712 additions and 223 deletions

View File

@ -0,0 +1,16 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.appendLinkInHead = void 0;
function appendLinkInHead(props) {
var href = props.href;
var link = document.createElement("link");
Object.assign(link, {
href: href,
"type": "text/css",
"rel": "stylesheet",
"media": "screen,print"
});
document.getElementsByTagName("head")[0].appendChild(link);
}
exports.appendLinkInHead = appendLinkInHead;
//# sourceMappingURL=appendLinkInHead.js.map