diff options
Diffstat (limited to 'packages/deployer/src/globals.d.ts')
-rw-r--r-- | packages/deployer/src/globals.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/deployer/src/globals.d.ts b/packages/deployer/src/globals.d.ts index 257e7823b..3cff8a909 100644 --- a/packages/deployer/src/globals.d.ts +++ b/packages/deployer/src/globals.d.ts @@ -42,3 +42,10 @@ declare module 'solc' { declare module 'web3-eth-abi' { export function encodeParameters(typesArray: string[], parameters: any[]): string; } + +declare module '*.json' { + const json: any; + /* tslint:disable */ + export default json; + /* tslint:enable */ +} |