UNPKG

@typespec/ts-http-runtime

Version:

Isomorphic client library for making HTTP requests in node.js and browser.

10 lines 342 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. import { createXhrHttpClient } from "./xhrHttpClient.js"; /** * Create the correct HttpClient for the current environment. */ export function createDefaultHttpClient() { return createXhrHttpClient(); } //# sourceMappingURL=defaultHttpClient-react-native.mjs.map