@polkadot/types-codec
Version:
Implementation of the SCALE codec
18 lines (17 loc) • 551 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RangeInclusive = void 0;
const Range_js_1 = require("./Range.js");
class RangeInclusive extends Range_js_1.Range {
constructor(registry, Type, value) {
super(registry, Type, value, { rangeName: 'RangeInclusive' });
}
static with(Type) {
return class extends RangeInclusive {
constructor(registry, value) {
super(registry, Type, value);
}
};
}
}
exports.RangeInclusive = RangeInclusive;
;