// Keyboard Map // Specification: https://wicg.github.io/keyboard-map/ // Repository: https://github.com/wicg/keyboard-map declare class KeyboardLayoutMap extends Map { } interface Keyboard { getLayoutMap(): Promise; onlayoutchange: ((this: Keyboard, ev: Event) => any) | null; } interface KeyboardEventMap { "layoutchange": Event; }