diff options
author | F. Eugene Aumson <gene@aumson.org> | 2018-08-31 00:34:27 +0800 |
---|---|---|
committer | F. Eugene Aumson <gene@aumson.org> | 2018-08-31 00:34:27 +0800 |
commit | 8d122006baa7efdf8bd7a7df7b140a66c7d988af (patch) | |
tree | 5242e730dbf70ef6d1a616d96556feecd3f5c8e3 | |
parent | 0e45497acbb0ad572e549ad81bb72b3b31d7860d (diff) | |
download | dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar.gz dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar.bz2 dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar.lz dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar.xz dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.tar.zst dexon-sol-tools-8d122006baa7efdf8bd7a7df7b140a66c7d988af.zip |
move export to top of file
-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, |