// Type definitions for detect-touch-events 1.0 // Project: https://github.com/rafrex/detect-touch-events#readme // Definitions by: Thomas Tilkema // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped interface detectTouchEvents { hasApi: boolean; maxTouchPoints: number; update(): void; } declare const detectTouchEvents: detectTouchEvents; export default detectTouchEvents;