@laserware/stasis
    Preparing search index...

    Type Alias Selector<State, Result, Params>

    Selector: Distribute<
        (state: State, ...params: FallbackIfNever<Params, []>) => Result,
    >

    A standard selector function.

    Type Parameters

    • State = any

      The first value, often a Redux root state object.

    • Result = unknown

      The final result returned by the selector.

    • Params extends readonly any[] = any[]

      All additional arguments passed into the selector.