UNPKG

fingerprinter-js

Version:

Enterprise-grade browser fingerprinting with 19 collectors and advanced bot detection

17 lines 468 B
/** * Touch Collector * Collects touch and pointer capabilities */ import { CollectorMetadata, TouchData } from "../types"; import { BaseCollector } from "./base"; /** * Touch Collector * Detects touch screen capabilities */ export declare class TouchCollector extends BaseCollector<TouchData> { readonly name = "touch"; readonly metadata: CollectorMetadata; collect(): TouchData; private checkCoarsePointer; } //# sourceMappingURL=touch.d.ts.map