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.

12 lines 416 B
import IUIEventInit from '../IUIEventInit.cjs'; import Touch from '../Touch.cjs'; 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