code-server/packages/vscode/src/fill/native-keymap.ts
Asher e770920be0
Remove block padding (blank lines)
Also made a rule for it.
2019-02-05 18:09:04 -06:00

12 lines
166 B
TypeScript

class NativeKeymap {
public getCurrentKeyboardLayout(): null {
return null;
}
public getKeyMap(): undefined[] {
return [];
}
}
export = new NativeKeymap();