@jsonjoy.com/json-type
Version:
High-performance JSON Pointer implementation
20 lines • 480 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StrType = void 0;
const AbsType_1 = require("./AbsType");
class StrType extends AbsType_1.AbsType {
format(format) {
this.schema.format = format;
return this;
}
min(min) {
this.schema.min = min;
return this;
}
max(max) {
this.schema.max = max;
return this;
}
}
exports.StrType = StrType;
//# sourceMappingURL=StrType.js.map