move export to top of file

This commit is contained in:
F. Eugene Aumson
2018-08-30 12:34:27 -04:00
parent 0e45497acb
commit 8d122006ba

View File

@@ -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,