Skip to content

Commit

Permalink
Add template import type for uniqueId helper
Browse files Browse the repository at this point in the history
  • Loading branch information
vstefanovic97 committed May 27, 2024
1 parent dee489b commit c5748f6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ import '@ember/helper';
type EELConcat = typeof Globals.concat;
type EELFn = typeof Globals.fn;
type EELGet = typeof Globals.get;
type EELUniqueId = typeof Globals['unique-id'];
declare module '@ember/helper' {
// export interface ArrayHelper extends EELArray {}
export interface ConcatHelper extends EELConcat {}
export interface FnHelper extends EELFn {}
export interface GetHelper extends EELGet {}
export interface UniqueIdHelper extends EELUniqueId {}
// export interface HashHelper extends EELHash {}
}

Expand Down

0 comments on commit c5748f6

Please sign in to comment.