Skip to content

Commit

Permalink
Fix: Remove unnecessary typing
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvaje committed Feb 14, 2019
1 parent 8102dba commit 6bb923f
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions packages/utils-tests-helpers/src/connectors.ts
Original file line number Diff line number Diff line change
@@ -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';

Expand All @@ -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'
Expand Down

0 comments on commit 6bb923f

Please sign in to comment.