From 4f5db77ec2db6c87cb93ceb9f7ea9ab311247f17 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Tue, 24 Sep 2019 15:44:15 +0200 Subject: API documentation for KVision 0.0.39 --- api/pl.treksoft.kvision.redux/-state-binding/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api/pl.treksoft.kvision.redux/-state-binding/index.html') diff --git a/api/pl.treksoft.kvision.redux/-state-binding/index.html b/api/pl.treksoft.kvision.redux/-state-binding/index.html index f79e4ec3..8e2efb86 100644 --- a/api/pl.treksoft.kvision.redux/-state-binding/index.html +++ b/api/pl.treksoft.kvision.redux/-state-binding/index.html @@ -8,7 +8,7 @@ kvision / pl.treksoft.kvision.redux / StateBinding

StateBinding

-class StateBinding<S : Any, A, CONT : Container, CONTENT> : Widget +class StateBinding<S : Any, A : RAction, CONT : Container, CONTENT> : Widget

A class which binds the redux store with the given container.

Constructors

@@ -518,7 +518,7 @@

stateBinding

@@ -527,7 +527,7 @@

stateUpdate

-- cgit
-fun <S : Any, A, CONT : Container> CONT.stateBinding(store: ReduxStore<S, A>, factory: CONT.(S) -> Unit): StateBinding<S, A, CONT, Unit> +fun <S : Any, A : RAction, CONT : Container> CONT.stateBinding(store: ReduxStore<S, A>, factory: CONT.(S) -> Unit): StateBinding<S, A, CONT, Unit>

DSL builder extension function.

-fun <S : Any, A, CONT : Container, CONTENT> CONT.stateUpdate(store: ReduxStore<S, A>, factory: CONT.(S) -> CONTENT): Updateable<S, CONTENT> +fun <S : Any, A : RAction, CONT : Container, CONTENT> CONT.stateUpdate(store: ReduxStore<S, A>, factory: CONT.(S) -> CONTENT): Updateable<S, CONTENT>

DSL builder extension function for updateable redux content.