mirror of
https://github.com/coder/code-server.git
synced 2026-05-26 14:17:28 +02: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();
|