@leyyo/cache
Version:
Common cache library
24 lines (23 loc) • 559 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CacheSegmentPropImpl = void 0;
const prop_1 = require("../prop");
class CacheSegmentPropImpl extends prop_1.CacheAbstractPropImpl {
constructor(data, parent) {
super(data, parent);
}
// region secure
get $secure() {
return this;
}
get $back() {
return this;
}
get $pure() {
return this._pure;
}
$setPure(pure) {
this._setPure(pure);
}
}
exports.CacheSegmentPropImpl = CacheSegmentPropImpl;