Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CombinedComps<T, A>

Type parameters

  • T: object

  • A: object

Hierarchy

  • CombinedComps

Index

Properties

actions

actions: object

Combined action object for child components

Type declaration

cmd

cmd: Sub<A>[]

Combined and mapped cmd object for child components

cmds

cmds: object

Splited mapped cmd object for child components, useful for router config, so you can call init cmd when each page routing.

Type declaration

render

render: function

helper function for render routes views, so you can do subComps.render('somePage', state, actions) instead of SomePage.views(state.somePage, actions.somePage) or <SomePage.views state={state.somePage} actions={actions.somePage} />

Type declaration

    • <K, S>(k: K, state: S, actions: ActionsType<S, any>): any
    • Type parameters

      • K: Extract<keyof T, keyof S>

      • S

      Parameters

      Returns any

state

state: object

Combined state object for child components

Type declaration

views

views: object

Combined view function for child components

Type declaration

Generated using TypeDoc