File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import { CommandsDelimiters } from "./constants";
6
6
import { IDictionary } from "./declarations";
7
7
import { IInjector } from "./definitions/yok";
8
8
import { ICommandArgument, ICommand } from "./definitions/commands";
9
- import { IKeyCommand, IValidKeyCommands } from "./definitions/key-commands";
9
+ import { IKeyCommand, IValidKeyName } from "./definitions/key-commands";
10
10
11
11
export let injector: IInjector;
12
12
@@ -189,10 +189,7 @@ export class Yok implements IInjector {
189
189
});
190
190
}
191
191
192
- public registerKeyCommand(
193
- name: IValidKeyCommands,
194
- resolver: IKeyCommand
195
- ): void {
192
+ public registerKeyCommand(name: IValidKeyName, resolver: IKeyCommand): void {
196
193
this.register(this.createKeyCommandName(name), resolver);
197
194
}
198
195
You can’t perform that action at this time.
0 commit comments