declare type networkConfig = { ignoreUrls?: string[]; isCatchResponseContent?: boolean; }; declare class TracerNetwork { private _open; private _send; private _setRequestHeader; private _XMLHttp; private _fetch; private handleXhrListers; private networkList; private ignoreUrls; private isCatchResponseContent; private isCatch; constructor(config: networkConfig); private init; private patchXhr; private patchFetch; private handleJudgeDisbale; private handleSendXML; private handleDoneXML; private handleReqUrl; addRequestListenr: (onHandleListener: (type: any, info: any) => any) => void; stopRequestCatch: () => void; resumeRequestCatch: () => void; } export default TracerNetwork;