@web-atoms/core-docs
Version:
19 lines • 616 B
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class FormattedString {
constructor(text) {
this.text = text;
}
}
exports.default = FormattedString;
});
//# sourceMappingURL=FormattedString.js.map