@ts-core/angular 15.0.31 → 15.0.32

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.
@@ -3317,7 +3317,7 @@ class LoginTokenStorage extends DestroyableContainer {
3317
3317
  get() {
3318
3318
  return this.storage.has(LoginTokenStorage.TOKEN_KEY) ? this.storage.get(LoginTokenStorage.TOKEN_KEY) : this.cookies.get(LoginTokenStorage.TOKEN_KEY);
3319
3319
  }
3320
- save(value) {
3320
+ set(value) {
3321
3321
  this.storage.set(LoginTokenStorage.TOKEN_KEY, value);
3322
3322
  this.cookies.put(LoginTokenStorage.TOKEN_KEY, value);
3323
3323
  }