diff --git a/types/dispatchr/dispatchr-tests.ts b/types/dispatchr/dispatchr-tests.ts index 797cb9fb0a..fcf0490f44 100644 --- a/types/dispatchr/dispatchr-tests.ts +++ b/types/dispatchr/dispatchr-tests.ts @@ -23,7 +23,7 @@ const TestStore = createStore({ additionalMethod() {} }); -class ExtendedStore extends BaseStore<{}> { +class ExtendedStore extends BaseStore { static handlers = { ACTION_NAME: 'actionHandler' }; diff --git a/types/dispatchr/index.d.ts b/types/dispatchr/index.d.ts index 3b4dab9ec1..b5cf63009d 100644 --- a/types/dispatchr/index.d.ts +++ b/types/dispatchr/index.d.ts @@ -2,7 +2,7 @@ // Project: https://github.com/yahoo/fluxible#readme // Definitions by: Ragg // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.3 +// TypeScript Version: 2.5 /// import { EventEmitter } from 'events';