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