UNPKG

832 BTypeScriptView Raw
1import { StrategyCacheService } from '../core/strategyCache';
2import { BaseSyncStorageStrategy } from './baseSyncStorage';
3import { NgZone } from '@angular/core';
4import { WebStorage } from '../core/interfaces/webStorage';
5import * as i0 from "@angular/core";
6export declare class LocalStorageStrategy extends BaseSyncStorageStrategy {
7 protected storage: WebStorage;
8 protected cache: StrategyCacheService;
9 protected platformId: any;
10 protected zone: NgZone;
11 static readonly strategyName: string;
12 readonly name: string;
13 constructor(storage: WebStorage, cache: StrategyCacheService, platformId: any, zone: NgZone);
14 protected listenExternalChanges(): void;
15 static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageStrategy, never>;
16 static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageStrategy>;
17}