@resolveio/client-lib-core 21.3.12 → 21.3.14
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
|
@@ -1130,6 +1130,9 @@ declare class AiTerminalComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
1130
1130
|
private formatCollectionLabel;
|
|
1131
1131
|
private formatMongoReadResult;
|
|
1132
1132
|
private formatMongoAggregateResult;
|
|
1133
|
+
private appendMongoDebugSection;
|
|
1134
|
+
private formatMongoDebugSection;
|
|
1135
|
+
private stringifyDebugValue;
|
|
1133
1136
|
private formatMongoAggregateDocumentSummary;
|
|
1134
1137
|
private formatMongoAggregateId;
|
|
1135
1138
|
private formatMongoDocumentSummary;
|
|
@@ -2287,7 +2290,7 @@ interface CanComponentDeactivate {
|
|
|
2287
2290
|
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
2288
2291
|
}
|
|
2289
2292
|
declare class CanDeactivateGuard {
|
|
2290
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
2293
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
2291
2294
|
static ɵfac: i0.ɵɵFactoryDeclaration<CanDeactivateGuard, never>;
|
|
2292
2295
|
static ɵprov: i0.ɵɵInjectableDeclaration<CanDeactivateGuard>;
|
|
2293
2296
|
}
|