Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 3x 3x 58x 3x | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DefaultPersistenceService = void 0;
/**
* This default persistence service is useless and just a placeholder. It won't cache or persist anything!
*/
class DefaultPersistenceService {
constructor() {
}
autoRestoreOnReconstruction() {
return false;
}
getDecryptedDataCacheHandler() {
return undefined;
}
getRequestCacheHandler() {
return undefined;
}
}
exports.DefaultPersistenceService = DefaultPersistenceService;
|