React Executor - v0.0.26
    Preparing search index...

    Interface SyncBrowserStorageOptions

    Options of the syncBrowserStorage plugin.

    interface SyncBrowserStorageOptions {
        serializer?: Serializer;
        storageKey?: string | ((executor: Executor) => string);
        storageType?: "local" | "session";
    }
    Index

    Properties

    serializer?: Serializer

    The storage item value serializer.

    JSON
    
    storageKey?: string | ((executor: Executor) => string)

    A storage item key, or a callback that returns a storage item key.

    By default, an executor key ID is used.

    storageType?: "local" | "session"

    The storage where executor state is persisted.

    "local"