Foxstore
  • Introduction
  • Base concepts
  • Store
  • Event handlers
  • Using store
    • Store by event scheme
    • Store by decorators
  • API Reference
    • Store
    • Handlers
    • Store options
      • Logging options
      • Saver
      • Dispatcher Options
Powered by GitBook
On this page

Was this helpful?

  1. API Reference

Store options

Configuration of Store

interface StoreOptions<State extends Record<string, unknown>> {
    storeName?: string | symbol;
    hashMap?: HashMapOptions;
    logOptions?: LogOptions;
    dispatcher?: DispatcherOptions;
    saving?: SaverOptions<State>;
}
PreviousHandlersNextLogging options

Last updated 3 years ago

Was this helpful?