Skip to content

Commit

Permalink
ci(tslint): Fixes linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ryasmi committed Aug 13, 2018
1 parent ef2f9b7 commit 304c5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/delay.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default (ms: number) => {
return new Promise((resolve) => {
return new Promise<void>((resolve) => {
setTimeout(() => {
resolve();
}, ms);
Expand Down

0 comments on commit 304c5ce

Please sign in to comment.