@typespec/ts-http-runtime
Version:
Isomorphic client library for making HTTP requests in node.js and browser.
12 lines • 321 B
TypeScript
import type { HttpClient } from "./interfaces.js";
declare global {
interface RequestInit {
duplex?: "half";
}
}
/**
* Create a new HttpClient instance for the browser environment.
* @internal
*/
export declare function createFetchHttpClient(): HttpClient;
//# sourceMappingURL=fetchHttpClient.d.ts.map