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

    Interface StorageChangeEvent

    Represents a change to the configured browser storage.

    interface StorageChangeEvent {
        key: string | null;
        newValue: string | null;
        oldValue: string | null;
    }
    Index
    key: string | null

    The key of the item that changed.

    The value is null when the complete storage was cleared by a native storage event.

    newValue: string | null

    The value after the change.

    oldValue: string | null

    The value before the change.