From 6b42020bf237e2422cd6b42a374ebc61ddbc533b Mon Sep 17 00:00:00 2001 From: Ragg Date: Thu, 1 Mar 2018 00:44:46 +0900 Subject: [PATCH] lint --- types/dispatchr/dispatchr-tests.ts | 2 +- types/dispatchr/index.d.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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';