Refactor subscription to return zeroExSignature object

This commit is contained in:
Leonid Logvinov
2017-06-13 15:52:50 +02:00
parent a045eb7bbb
commit 6ad1900ada
5 changed files with 51 additions and 28 deletions

View File

@@ -275,3 +275,8 @@ export interface ContractInstance {
export interface Artifact {
networks: {[networkId: number]: any};
}
export interface ZeroExEvent {
watch: (eventCallback: EventCallback) => void;
stopWatchingAsync: () => Promise<void>;
}