/** * 事件监听 */ import { Report } from "./report"; /** 处理上报绑定到浏览器 */ export declare class Tracker { private report; /** b2s切换到b5s的时间戳 */ private b2sStopTime; /** 最后一次报告的时间戳 */ lastSendReportTimeStamp: number; constructor(report: Report); xpathHitDect: (e: HTMLElement) => void; clickHandler: (e: Event) => void; private scrollTimer; scrollHandler: () => void; touchStartHandler: (e: Event) => void; touchMovePreTime: number; touchMoveHandler: (e: Event) => void; touchEndHandler: (e: Event) => void; private inputChangeTimer; inputChangeHandler: (e: Event) => void; bindClick: () => this; bindTouchStart: () => this; bindTouchMove: () => this; bindTouchEnd: () => this; bindInputChange: () => this; bindScroll: () => this; private bindView; bindBounce2s: () => void; bindBounce5s: () => void; init(): Promise; } //# sourceMappingURL=tracker.d.ts.map