diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-13 17:25:10 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-03-13 17:25:10 +0800 |
commit | 7ac646ff94bfa996abab6fca5000a06acb66a898 (patch) | |
tree | 74a1f6302ff4b6425bf100eb3e51015fd5b24825 /packages/0x.js/src/globals.d.ts | |
parent | ef6aa9f41b9f21d033034c51e8880ec9d70b6b40 (diff) | |
download | dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar.gz dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar.bz2 dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar.lz dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar.xz dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.tar.zst dexon-sol-tools-7ac646ff94bfa996abab6fca5000a06acb66a898.zip |
Move monorepo_scripts into src dir removing the need for a separate globals.d.ts and tsconfig files
Diffstat (limited to 'packages/0x.js/src/globals.d.ts')
-rw-r--r-- | packages/0x.js/src/globals.d.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/0x.js/src/globals.d.ts b/packages/0x.js/src/globals.d.ts index 0e103d057..f37ac7cb0 100644 --- a/packages/0x.js/src/globals.d.ts +++ b/packages/0x.js/src/globals.d.ts @@ -4,6 +4,13 @@ declare module 'dirty-chai'; declare module 'request-promise-native'; declare module 'web3-provider-engine'; declare module 'web3-provider-engine/subproviders/rpc'; +declare module 'async-child-process'; +declare module 'publish-release'; + +// semver-sort declarations +declare module 'semver-sort' { + const desc: (versions: string[]) => string[]; +} // HACK: In order to merge the bignumber declaration added by chai-bignumber to the chai Assertion // interface we must use `namespace` as the Chai definitelyTyped definition does. Since we otherwise |