gbf-raidfinder-parser
Version:
Parser for Granblue Fantasy raid tweets
12 lines • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var TextParser = /** @class */ (function () {
function TextParser() {
}
TextParser.prototype.invalidFormatError = function (text) {
return new TypeError("Can't parse text '" + text + "'");
};
return TextParser;
}());
exports.default = TextParser;
//# sourceMappingURL=TextParser.js.map