diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2017-11-14 05:25:21 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2017-11-14 06:11:39 +0800 |
commit | b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d (patch) | |
tree | 3eff5685780ba63e86b4484a8d7fc86a6d869fb0 /packages/assert/src/globals.d.ts | |
parent | 2b26981e3dbf82d0ea5f6e526485f94da4fdbd1e (diff) | |
download | dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar.gz dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar.bz2 dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar.lz dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar.xz dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.tar.zst dexon-sol-tools-b0f13c17e2c62f9f1942d6ec2a6ef3fa6873558d.zip |
Add assert package to the monorepo
Diffstat (limited to 'packages/assert/src/globals.d.ts')
-rw-r--r-- | packages/assert/src/globals.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/assert/src/globals.d.ts b/packages/assert/src/globals.d.ts new file mode 100644 index 000000000..cc47f3113 --- /dev/null +++ b/packages/assert/src/globals.d.ts @@ -0,0 +1,5 @@ +declare module 'dirty-chai'; + +declare module 'ethereum-address' { + const isAddress: (arg: any) => boolean; +} |