diff options
author | F. Eugene Aumson <gene@aumson.org> | 2018-09-18 06:31:55 +0800 |
---|---|---|
committer | F. Eugene Aumson <gene@aumson.org> | 2018-09-18 07:31:40 +0800 |
commit | d40a670d0be4db73dc15dc33094663f9c617312c (patch) | |
tree | 0e0da5df585452393f8089d105c383afba7ed693 | |
parent | 4ade674ada7596f1a7c5d0113815c5964e82db0f (diff) | |
download | dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar.gz dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar.bz2 dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar.lz dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar.xz dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.tar.zst dexon-sol-tools-d40a670d0be4db73dc15dc33094663f9c617312c.zip |
add newline to delimit interface declaration
-rw-r--r-- | packages/ethereum-types/src/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/ethereum-types/src/index.ts b/packages/ethereum-types/src/index.ts index b4c9b73ca..7bf1721a7 100644 --- a/packages/ethereum-types/src/index.ts +++ b/packages/ethereum-types/src/index.ts @@ -363,6 +363,7 @@ export type ErrorType = | 'FatalError' | 'Warning'; export type ErrorSeverity = 'error' | 'warning'; + export interface SolcError { sourceLocation?: { file: string; |