12 lines
337 B
JavaScript
12 lines
337 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.VerbatimString = void 0;
|
|
class VerbatimString extends String {
|
|
format;
|
|
constructor(format, value) {
|
|
super(value);
|
|
this.format = format;
|
|
}
|
|
}
|
|
exports.VerbatimString = VerbatimString;
|
|
//# sourceMappingURL=verbatim-string.js.map
|