Local Storage Key

enum LocalStorageKey

This enum consists of all the keys stored in window.localStorage via the Storage Service. They are prefixed and not used as-is.

local-storage-key.enum.ts
export enum LocalStorageKey {
  LastUpdateCheckTimestamp = 'lastUpdateCheckTimestamp',
  Settings = 'settings',
}

Last updated