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