UNPKG

happy-dom-without-node

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.

12 lines 414 B
import IUIEventInit from '../IUIEventInit.js'; import Touch from '../Touch.js'; export default interface ITouchEventInit extends IUIEventInit { touches?: Touch[] | null; targetTouches?: Touch[] | null; changedTouches?: Touch[] | null; ctrlKey?: boolean | null; shiftKey?: boolean | null; altKey?: boolean | null; metaKey?: boolean | null; } //# sourceMappingURL=ITouchEventInit.d.ts.map