createTypedThreadSafeStore
inline fun <State, Action : Any> createTypedThreadSafeStore(crossinline reducer: TypedReducer<State, Action>, preloadedState: State, noinline enhancer: StoreEnhancer<State>? = null): TypedStore<State, Action>
Creates a thread-safe TypedStore. For further details see the matching createThreadSafeStore.