Type alias Transformer<RootState, FragmentStore>

Transformer<RootState, FragmentStore>: ((store$: Observable<RootState>, scope: any) => Observable<FragmentStore>)

Type Parameters

  • RootState

    The type of the root state object.

  • FragmentStore

    The type of the transformed state object.

Type declaration

    • (store$: Observable<RootState>, scope: any): Observable<FragmentStore>
    • A function used to transform a store of type Observable to type Observable.

      Returns

      The transformed store.

      Parameters

      • store$: Observable<RootState>

        The root state store to transform.

      • scope: any

        The scope of the transformation.

      Returns Observable<FragmentStore>

Generated using TypeDoc