Skip to content

Commit

Permalink
Merge pull request #32 from isaacplmann/es6-shim
Browse files Browse the repository at this point in the history
fix(types): Remove @types/es6-shim requirement
  • Loading branch information
brtnshrdr authored Jan 30, 2017
2 parents 5479ed0 + 135be08 commit 7008747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotkeys.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'mousetrap';
providers : [HotkeysService]
})
export class HotkeysDirective implements OnInit, OnDestroy {
@Input() hotkeys: Array<{[combo: string]: (event: KeyboardEvent, combo: string) => ExtendedKeyboardEvent}>;
@Input() hotkeys: {[combo: string]: (event: KeyboardEvent, combo: string) => ExtendedKeyboardEvent}[];

private mousetrap: MousetrapInstance;
private hotkeysList: Hotkey[] = [];
Expand Down

0 comments on commit 7008747

Please sign in to comment.