Skip to content

Commit

Permalink
Merge pull request #17112 from josemarluedke/jl-return-type-hash-helper
Browse files Browse the repository at this point in the history
Add return type to hash helper
  • Loading branch information
rwjblue committed Oct 11, 2018
2 parents 239809a + 1c04ff5 commit 06bb83f
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 06bb83f

Please sign in to comment.