From 823b0ea7ed422636e4e763576b6975a422728522 Mon Sep 17 00:00:00 2001 From: 0xGorilla <84932007+0xGorilla@users.noreply.github.com> Date: Thu, 7 Jul 2022 14:17:39 +0300 Subject: [PATCH] fix: duplicated type (#138) --- src/types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/types.ts b/src/types.ts index 4d05e88..ff264ec 100644 --- a/src/types.ts +++ b/src/types.ts @@ -41,10 +41,6 @@ export interface SetVariablesType { [variablesName: string]: any; } -export interface SetVariablesType { - [variablesName: string]: any; -} - export type WhenCalledWithChain = { returns: (value?: ProgrammedReturnValue) => void; reverts: (reason?: string) => void;