@rb-mwindh/ngx-theme-manager - v22.0.1
    Preparing search index...

    Class StorageServiceInternal

    Provides access to localStorage and an observable stream of storage changes.

    No signal is exposed because storage changes are events rather than application state.

    Index
    changes$: Observable<StorageChangeEvent> = ...

    Observable stream of storage change events.

    • Returns a stored value.

      Parameters

      • key: string

        The key to retrieve.

      Returns string | null

      The stored value or null.

    • Removes a stored value.

      No event is emitted when the key does not exist.

      Parameters

      • key: string

        The key to remove.

      Returns void

    • Stores a value.

      No event is emitted when the new value equals the existing value.

      Parameters

      • key: string

        The key to set.

      • newValue: string

        The value to store.

      Returns void