@leyyo/cache
Version:
Common cache library
30 lines (29 loc) • 795 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CacheChannelPropImpl = void 0;
const prop_1 = require("../prop");
// noinspection JSUnusedGlobalSymbols
class CacheChannelPropImpl extends prop_1.CacheAbstractPropImpl {
constructor(data, parent) {
// const validators = new Map<string, CachePropValidator>();
// validators.set('property', property => this._parseProperties(property));
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.CacheChannelPropImpl = CacheChannelPropImpl;