Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
dekz committed Aug 26, 2019
1 parent 8d517f0 commit de58499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/orderbook/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const utils = {
},
async delayAsync(ms: number): Promise<void> {
// tslint:disable:no-inferred-empty-object-type
return new Promise(resolve => setTimeout(resolve, ms));
return new Promise<void>(resolve => setTimeout(resolve, ms));
},
async attemptAsync<T>(
fn: () => Promise<T>,
Expand Down

0 comments on commit de58499

Please sign in to comment.