blob: 4ffffd43717933ceee5c3c8f47b3e3a5276b9952 [file] [edit]
// 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<void> lock(optional sequence<DOMString> keyCodes = []);
void unlock();
};