@ts-core/angular 15.0.25 → 15.0.27
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/esm2020/login/LoginRequireResolver.mjs +3 -3
- package/fesm2015/ts-core-angular.mjs +2 -2
- package/fesm2015/ts-core-angular.mjs.map +1 -1
- package/fesm2020/ts-core-angular.mjs +2 -2
- package/fesm2020/ts-core-angular.mjs.map +1 -1
- package/login/LoginRequireResolver.d.ts +4 -4
- package/package.json +1 -1
|
@@ -3129,9 +3129,9 @@ class LoginRequireResolver {
|
|
|
3129
3129
|
// Public Methods
|
|
3130
3130
|
//
|
|
3131
3131
|
// --------------------------------------------------------------------------
|
|
3132
|
-
resolve() {
|
|
3132
|
+
resolve(...params) {
|
|
3133
3133
|
if (this.isLoggedIn()) {
|
|
3134
|
-
return Promise.resolve();
|
|
3134
|
+
return Promise.resolve(null);
|
|
3135
3135
|
}
|
|
3136
3136
|
let promise = PromiseHandler.create();
|
|
3137
3137
|
let subscription = this.login.events.subscribe(data => {
|