UNPKG

logan-web

Version:

Web SDK for Logan, supports log and report in H5 and browser environment.

12 lines (11 loc) 252 B
interface XHROpts { url: string; type: 'GET' | 'POST' | string; withCredentials: boolean; success?: Function; fail?: Function; headers?: any; data?: any; } export default function (opts: XHROpts): XMLHttpRequest; export {};