diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/typescript-typings/types/solc/index.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/typescript-typings/types/solc/index.d.ts b/packages/typescript-typings/types/solc/index.d.ts index 2cfd4a030..f4c05cd7c 100644 --- a/packages/typescript-typings/types/solc/index.d.ts +++ b/packages/typescript-typings/types/solc/index.d.ts @@ -1,4 +1,5 @@ declare module 'solc' { + export { ErrorType, ErrorSeverity, SolcError, StandardContractOutput, StandardOutput } from 'ethereum-types'; import { SolcError } from 'ethereum-types'; export interface ContractCompilationResult { srcmap: string; @@ -88,7 +89,6 @@ declare module 'solc' { }; settings: CompilerSettings; } - export { ErrorType, ErrorSeverity, SolcError, StandardContractOutput, StandardOutput } from 'ethereum-types'; export interface SolcInstance { compile( sources: InputSources, |