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