dice-typescript
Version:
A TypeScript library for parsing dice rolling expressions, most commonly used in tabletop RPGs.
12 lines • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var ParserError = /** @class */ (function () {
function ParserError(message, token, stackTrace) {
this.message = message;
this.token = token;
this.stackTrace = stackTrace;
}
return ParserError;
}());
exports.ParserError = ParserError;
//# sourceMappingURL=error-message.class.js.map