mirror of
https://github.com/cdr/code-server.git
synced 2025-12-07 00:44:31 +01:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
module.exports = {
|
|
getCurrentKeyboardLayout: (): null => {
|
|
return null;
|
|
},
|
|
getKeyMap: (): undefined[] => {
|
|
return [];
|
|
},
|
|
};
|