Skip to content

Commit

Permalink
fix(types): Remove @types/es6-shim requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacplmann committed Jan 30, 2017
1 parent 5479ed0 commit 135be08
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 135be08

Please sign in to comment.