mirror of
https://github.com/cdr/code-server.git
synced 2026-05-07 03:53:54 +02:00
11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
class NativeKeymap {
|
|
public getCurrentKeyboardLayout(): null {
|
|
return null;
|
|
}
|
|
|
|
public getKeyMap(): undefined[] {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export = new NativeKeymap();
|