Store options
Configuration of Store
interface StoreOptions<State extends Record<string, unknown>> {
storeName?: string | symbol;
hashMap?: HashMapOptions;
logOptions?: LogOptions;
dispatcher?: DispatcherOptions;
saving?: SaverOptions<State>;
}
Last updated
Was this helpful?