UNPKG

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.

19 lines (16 loc) 337 B
import IUIEventInit from '../IUIEventInit.js'; 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; }