@nettyapps/ntybase 0.1.7 → 0.1.9
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/index.d.ts
CHANGED
|
@@ -509,7 +509,7 @@ interface CanComponentDeactivate {
|
|
|
509
509
|
canDeactivate: () => boolean | Promise<boolean> | Observable<boolean>;
|
|
510
510
|
}
|
|
511
511
|
declare class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
|
|
512
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
512
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
513
513
|
}
|
|
514
514
|
|
|
515
515
|
declare class AuthenticationInterceptor implements HttpInterceptor {
|