diff options
author | Fabio Berger <me@fabioberger.com> | 2017-11-28 04:44:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 04:44:32 +0800 |
commit | 694c37150c35f8d9810067b8810764585ac76508 (patch) | |
tree | c465be06e2d23630c05c8554806ec1de76a8fb10 /packages/0x.js | |
parent | 48b3d8526560d389e74beb12bbd64b7be6e9268f (diff) | |
parent | e7b523074ab124f2d4e790d71aac9df7e1e2c4cf (diff) | |
download | dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar.gz dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar.bz2 dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar.lz dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar.xz dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.tar.zst dexon-sol-tools-694c37150c35f8d9810067b8810764585ac76508.zip |
Merge pull request #239 from 0xProject/fix/docs
Fix 0x.js Doc Issues
Diffstat (limited to 'packages/0x.js')
-rw-r--r-- | packages/0x.js/src/types.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/0x.js/src/types.ts b/packages/0x.js/src/types.ts index 143e2b6b2..4d55046b4 100644 --- a/packages/0x.js/src/types.ts +++ b/packages/0x.js/src/types.ts @@ -383,7 +383,8 @@ export type AsyncMethod = (...args: any[]) => Promise<any>; /** * We re-export the `Web3.Provider` type specified in the Web3 Typescript typings * since it is the type of the `provider` argument to the `ZeroEx` constructor. - * It is however a `Web3` library type, not a native `0x.js` type. + * It is however a `Web3` library type, not a native `0x.js` type. To learn more + * about providers, visit https://0xproject.com/wiki#Web3-Provider-Explained */ export type Web3Provider = Web3.Provider; |