mirror of
https://git.tuxpa.in/a/code-server.git
synced 2025-02-18 18:09:18 +00:00
12 lines
166 B
TypeScript
12 lines
166 B
TypeScript
class NativeKeymap {
|
|
public getCurrentKeyboardLayout(): null {
|
|
return null;
|
|
}
|
|
|
|
public getKeyMap(): undefined[] {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export = new NativeKeymap();
|