Other fix

This commit is contained in:
Nathan Bierema 2020-08-26 09:09:22 -04:00
parent 0f51992b0b
commit 07e1a5a9b4

View File

@ -37,7 +37,7 @@ interface Props<
export type Monitor<
S,
A extends Action<unknown>,
MonitorProps,
MonitorProps extends LiftedState<S, A, MonitorState>,
MonitorState,
MonitorAction extends Action<unknown>
> = React.ReactElement<
@ -54,7 +54,7 @@ export type Monitor<
export default function createDevTools<
S,
A extends Action<unknown>,
MonitorProps,
MonitorProps extends LiftedState<S, A, MonitorState>,
MonitorState,
MonitorAction extends Action<unknown>
>(children: Monitor<S, A, MonitorProps, MonitorState, MonitorAction>) {