e770920be0
Also made a rule for it.
12 lines
166 B
TypeScript
12 lines
166 B
TypeScript
class NativeKeymap {
|
|
public getCurrentKeyboardLayout(): null {
|
|
return null;
|
|
}
|
|
|
|
public getKeyMap(): undefined[] {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export = new NativeKeymap();
|