Skip to content

Commit

Permalink
Fix another type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Godhuda committed Apr 19, 2016
1 parent 269af3c commit 7754bea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Helper } from '../../environment';
import { PathReference } from 'glimmer-reference';
import { Opaque, InternedString } from 'glimmer-util';

export default class CompiledHelper<T> extends CompiledExpression<Opaque> {
export default class CompiledHelper<T> extends CompiledExpression<T> {
public type = "helper";
public name: InternedString[];
public helper: Helper;
Expand Down

0 comments on commit 7754bea

Please sign in to comment.