diff --git a/packages/typescript-typings/types/ganache-core/index.d.ts b/packages/typescript-typings/types/ganache-core/index.d.ts index ff7d342559..8eeb05b607 100644 --- a/packages/typescript-typings/types/ganache-core/index.d.ts +++ b/packages/typescript-typings/types/ganache-core/index.d.ts @@ -1,5 +1,5 @@ declare module 'ganache-core' { - import Provider = require('ethereum-types').Provider; + import EthereumTypes = require('ethereum-types'); export interface GanacheOpts { verbose?: boolean; logger?: { @@ -13,5 +13,5 @@ declare module 'ganache-core' { vmErrorsOnRPCResponse?: boolean; db_path?: string; } - export function provider(opts: GanacheOpts): Provider; + export function provider(opts: GanacheOpts): EthereumTypes.Provider; }