Files
est-frame/node_modules/search-insights/dist/utils/request.d.ts
2025-10-22 05:38:27 +00:00

6 lines
339 B
TypeScript
Executable File

export type RequestFnType = (url: string, data: Record<string, unknown>) => Promise<boolean>;
export declare const requestWithXMLHttpRequest: RequestFnType;
export declare const requestWithSendBeacon: RequestFnType;
export declare const requestWithNodeHttpModule: RequestFnType;
export declare const requestWithNativeFetch: RequestFnType;