Skip to content

Commit f8b97aa

Browse files
fix(overmind-react): fix typing related to changes
1 parent 97f6a1f commit f8b97aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/node_modules/overmind-react/src/index.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('React', () => {
3030

3131
const app = new Overmind(config)
3232

33-
type Action<Input = void, Output = any> = TAction<IApp, Input, Output>
33+
type Action<Input = void> = TAction<IApp, Input>
3434

3535
const connect = createConnect(app)
3636

@@ -69,7 +69,7 @@ describe('React', () => {
6969

7070
const app = new Overmind(config)
7171

72-
type Action<Input = void, Output = any> = TAction<IApp, Input, Output>
72+
type Action<Input = void> = TAction<IApp, Input>
7373

7474
const connect = createConnect(app)
7575

@@ -141,7 +141,7 @@ describe('React', () => {
141141

142142
const app = new Overmind(config)
143143

144-
type Action<Input = void, Output = any> = TAction<IApp, Input, Output>
144+
type Action<Input = void> = TAction<IApp, Input>
145145

146146
const connect = createConnect(app)
147147

0 commit comments

Comments
 (0)