// GENERATED CONTENT - DO NOT EDIT // Content of this file was automatically extracted from the // "Keyboard Lock" spec. // See: https://w3c.github.io/keyboard-lock/ partial interface Navigator { [SecureContext, SameObject] readonly attribute Keyboard keyboard; }; [SecureContext, Exposed=Window] interface Keyboard { Promise lock(optional sequence keyCodes = []); void unlock(); };