Skip to content

Commit

Permalink
fix(typescript): finally should be optional (#1350)
Browse files Browse the repository at this point in the history
  • Loading branch information
bitflower authored and daffl committed May 15, 2019
1 parent 61b1056 commit f439a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/feathers/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ declare namespace createApplication {
before: Partial<HookMap> | Hook | Hook[];
after: Partial<HookMap> | Hook | Hook[];
error: Partial<HookMap> | Hook | Hook[];
finally: Partial<HookMap> | Hook | Hook[];
finally?: Partial<HookMap> | Hook | Hook[];
}

// todo: figure out what to do: These methods don't actually need to be
Expand Down

0 comments on commit f439a9e

Please sign in to comment.