mirror of
https://git.tuxpa.in/a/code-server.git
synced 2025-01-06 08:48:46 +00:00
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();
|