Skip to main content

createStore

Callable

  • createStore<State, Updates>(initialState: State, options: StoreOptions<State, Updates>): Store<State, Updates>

  • Creates the state store.


    Type parameters

    • State
    • Updates: Readonly<Record<string, (...args: any[]) => StateMutation<State>>> = Readonly<Record<string, (...args: any[]) => StateMutation<State>>>

    Parameters

    • initialState: State

      Initial state

    • options: StoreOptions<State, Updates>

      Options for the store

    Returns Store<State, Updates>