Statekit - v2.0.1
    Preparing search index...

    Type Alias BoundStore<TState, TActions, TSelection>

    type BoundStore<
        TState extends object,
        TActions extends object,
        TSelection = TState,
    > = {
        actions: TActions;
        set: (stateModifier: StateModifier<TState>) => TState;
        state: TSelection;
    }

    Type Parameters

    • TState extends object
    • TActions extends object
    • TSelection = TState
    Index

    Properties

    Properties

    actions: TActions
    set: (stateModifier: StateModifier<TState>) => TState
    state: TSelection