7 lines
86 B
TypeScript
7 lines
86 B
TypeScript
|
export interface ICommand {
|
||
|
event: {
|
||
|
input: string;
|
||
|
modifierFlags: number;
|
||
|
};
|
||
|
}
|