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

    Interface SynchronizeStorageOptions<Value>

    Options of the synchronizeStorage plugin.

    interface SynchronizeStorageOptions<Value> {
        serializer?: Serializer<ExecutorState<Value>>;
        storageKey?: string | ((executor: Executor) => string);
    }

    Type Parameters

    • Value
    Index

    Properties

    The storage record serializer.

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

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

    By default, a serialized Executor.key is used as a storage key.