aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils/src/globals.d.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-14 22:18:16 +0800
committerGitHub <noreply@github.com>2018-03-14 22:18:16 +0800
commite16feb27f4ec1987259a87f360824a0158bd8b10 (patch)
treee94cb3bc89e215c4df38ab161379023ab8e0c4e9 /packages/utils/src/globals.d.ts
parent3f3e8be004818ddaa1921b3dff12bdd46052278b (diff)
parent83ae7ba08d55fa964bf7b7a985aea0fe1520c5c7 (diff)
downloaddexon-0x-contracts-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.gz
dexon-0x-contracts-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.zst
dexon-0x-contracts-e16feb27f4ec1987259a87f360824a0158bd8b10.zip
Merge pull request #450 from 0xProject/convertScriptsToTs
Convert Scripts to TS & Other Misc. Fixes
Diffstat (limited to 'packages/utils/src/globals.d.ts')
-rw-r--r--packages/utils/src/globals.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/utils/src/globals.d.ts b/packages/utils/src/globals.d.ts
new file mode 100644
index 000000000..94e63a32d
--- /dev/null
+++ b/packages/utils/src/globals.d.ts
@@ -0,0 +1,6 @@
+declare module '*.json' {
+ const json: any;
+ /* tslint:disable */
+ export default json;
+ /* tslint:enable */
+}