@resolveio/client-lib-core 21.5.3 → 21.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -2570,7 +2570,7 @@ interface CanComponentDeactivate {
|
|
|
2570
2570
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2571
2571
|
}
|
|
2572
2572
|
declare class CanDeactivateGuard {
|
|
2573
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2573
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
2574
2574
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2575
2575
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2576
2576
|
}
|
|
@@ -2717,6 +2717,8 @@ declare class Collection {
|
|
|
2717
2717
|
cacheable: boolean;
|
|
2718
2718
|
db: StorageDB;
|
|
2719
2719
|
constructor(db: StorageDB, name: any, opts: any);
|
|
2720
|
+
_isQuotaExceeded(error: any): any;
|
|
2721
|
+
_safeSetItem(key: any, value: any): boolean;
|
|
2720
2722
|
_initCache(): void;
|
|
2721
2723
|
_filter(filter: any, opts: any): any;
|
|
2722
2724
|
insert(data: any, expiresDate?: any, opts?: any): any;
|