@ts-core/angular 11.0.87 → 11.0.88

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.
@@ -9275,7 +9275,7 @@
9275
9275
  // Public Methods
9276
9276
  //
9277
9277
  // --------------------------------------------------------------------------
9278
- LoginRequireResolver.prototype.resolve = function (route, state) {
9278
+ LoginRequireResolver.prototype.resolve = function () {
9279
9279
  if (this.login.isLoggedIn) {
9280
9280
  return Promise.resolve();
9281
9281
  }
@@ -9311,7 +9311,7 @@
9311
9311
  // Public Methods
9312
9312
  //
9313
9313
  // --------------------------------------------------------------------------
9314
- LoginGuard.prototype.canActivate = function (route, state) {
9314
+ LoginGuard.prototype.canActivate = function () {
9315
9315
  return this.login.isLoggedIn;
9316
9316
  };
9317
9317
  return LoginGuard;