In @0x/typescript-typings: Add types for @0x/dev-utils chai helpers in types/@0x.

In `@0x/dev-utils`: remove global typescript types for chai helpers in lieu of defining them in `@0x/typescript-typings`
This commit is contained in:
Lawrence Forman
2019-04-04 15:45:29 -04:00
committed by Amir Bandeali
parent f06f0785f1
commit 162a812189
3 changed files with 16 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
// tslint:disable: no-namespace
declare namespace Chai {
interface Assertion {
revertWith: (expected: string | RevertError) => Promise<void>;
}
}