type touchList;
module Impl: (T: { ... }) => { ... };type t = Dom.touchEvent;
include { ... };
let bubbles: t => bool;let cancelable: t => bool;let composed: t => bool;let currentTarget: t => Dom.eventTarget;let defaultPrevented: t => bool;
let eventPhase: t => Webapi__Dom__Types.EventPhase.t;
let target: t => Dom.eventTarget;let timeStamp: t => float;let type_: t => string;let isTrusted: t => bool;let preventDefault: t => unit;let stopImmediatePropagation: t => unit;let stopPropagation: t => unit;
include { ... };
let detail: t => int;let view: t => Dom.window;
include { ... };
let altKey: t => bool;let changedTouches: t => touchList;let ctrlKey: t => bool;let metaKey: t => bool;let shiftKey: t => bool;let targetTouches: t => touchList;let touches: t => touchList;
let make: string => t;let makeWithOptions: string => Js.t({.. }) => t;