// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// /// /// /// /// /// /// /// const core = globalThis.Deno.core; const ops = core.ops; /** * @param {Deno.CreateHttpClientOptions} options * @returns {HttpClient} */ function createHttpClient(options) { options.caCerts ??= []; return new HttpClient( ops.op_fetch_custom_client( options, ), ); } class HttpClient { /** * @param {number} rid */ constructor(rid) { this.rid = rid; } close() { core.close(this.rid); } } const HttpClientPrototype = HttpClient.prototype; export { createHttpClient, HttpClient, HttpClientPrototype };