Skip to content

Commit

Permalink
Add return type to hash helper
Browse files Browse the repository at this point in the history
  • Loading branch information
josemarluedke committed Oct 10, 2018
1 parent 7116215 commit 1c04ff5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/@ember/-internals/glimmer/lib/helpers/hash.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import { PathReference } from '@glimmer/reference';
import { Arguments, VM } from '@glimmer/runtime';
import { Dict, Opaque } from '@glimmer/util';

/**
@module ember
Expand Down Expand Up @@ -43,6 +45,6 @@ import { Arguments, VM } from '@glimmer/runtime';
@public
*/

export default function(_vm: VM, args: Arguments) {
export default function(_vm: VM, args: Arguments): PathReference<Dict<Opaque>> {
return args.named.capture();
}

0 comments on commit 1c04ff5

Please sign in to comment.