1
0
mirror of https://git.tuxpa.in/a/code-server.git synced 2025-01-07 17:18:46 +00:00
code-server-2/packages/vscode/src/fill/native-keymap.ts

12 lines
166 B
TypeScript
Raw Normal View History

class NativeKeymap {
public getCurrentKeyboardLayout(): null {
2019-01-08 00:46:19 +00:00
return null;
}
public getKeyMap(): undefined[] {
2019-01-08 00:46:19 +00:00
return [];
}
}
export = new NativeKeymap();