/// /// import { RequestOptions } from "https"; import { URL } from "url"; type RequestResult = { success: boolean; statusCode?: number; errorMessage?: string; }; export declare function post(url: URL, body: T, options?: Partial, compressPayload?: boolean): Promise; export declare function get(url: URL, options?: Partial): Promise; export {}; //# sourceMappingURL=request.d.ts.map