Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dtinth committed Sep 2, 2019
1 parent 74aad60 commit d1ffd9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/interactors/createAutoVelocity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type VelocityController = {
}
): void
}
export default (options: VelocityControllerOptions): AutoVelocity => {
export default (options: VelocityControllerOptions): VelocityController => {
invariant(typeof options.enabled === 'boolean', 'enabled must be a boolean')
invariant(
typeof options.initialSpeed === 'number',
Expand Down

0 comments on commit d1ffd9d

Please sign in to comment.