@nettyapps/ntybase 0.1.23 → 0.1.24
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
|
@@ -587,7 +587,7 @@ interface CanComponentDeactivate {
|
|
|
587
587
|
canDeactivate: () => boolean | Promise<boolean> | Observable<boolean>;
|
|
588
588
|
}
|
|
589
589
|
declare class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
|
|
590
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
590
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Observable<boolean> | Promise<boolean>;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
declare class AuthenticationInterceptor implements HttpInterceptor {
|
|
@@ -745,6 +745,8 @@ declare class Login extends AuthBase {
|
|
|
745
745
|
credentials: LoginContext;
|
|
746
746
|
ngOnInit(): void;
|
|
747
747
|
timeout(ms: number): Promise<unknown>;
|
|
748
|
+
private handleRememberMe;
|
|
749
|
+
private loadRememberedUsername;
|
|
748
750
|
login(): void;
|
|
749
751
|
onForgotPassword(): void;
|
|
750
752
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Login, never>;
|