From 6bb923f012cb2320f653274fce9d5664ba6fbfac Mon Sep 17 00:00:00 2001 From: Jesus David Garcia Gomez Date: Wed, 13 Feb 2019 17:46:22 -0800 Subject: [PATCH] Fix: Remove unnecessary typing --- packages/utils-tests-helpers/src/connectors.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/utils-tests-helpers/src/connectors.ts b/packages/utils-tests-helpers/src/connectors.ts index 942fd8210f7..a123e515b73 100644 --- a/packages/utils-tests-helpers/src/connectors.ts +++ b/packages/utils-tests-helpers/src/connectors.ts @@ -1,9 +1,3 @@ -/* - * This interface needs to be imported in order - * to generate the definition of this file. - */ -import { IConnectorConstructor } from 'hint/dist/src/lib/types'; - import ChromeConnector from '@hint/connector-chrome'; import JSDOMConnector from '@hint/connector-jsdom'; @@ -14,7 +8,7 @@ export const ids = [ ]; /** The Constructors of the available connectors to test. */ -export const connectors: { ctor: IConnectorConstructor; name: string }[] = [ +export const connectors = [ { ctor: ChromeConnector, name: 'chrome'