happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
17 lines • 423 B
TypeScript
import IUIEventInit from '../IUIEventInit.cjs';
export default interface IKeyboardEventInit extends IUIEventInit {
key?: string;
code?: string;
location?: number;
ctrlKey?: boolean;
shiftKey?: boolean;
altKey?: boolean;
metaKey?: boolean;
repeat?: boolean;
isComposing?: boolean;
/**
* @deprecated
*/
keyCode?: number;
}
//# sourceMappingURL=IKeyboardEventInit.d.ts.map