From 2c4a2df2ffb89c20b3bbec274a4f5dbe30ca04bf Mon Sep 17 00:00:00 2001 From: toptobes <96998732+toptobes@users.noreply.github.com> Date: Wed, 22 May 2024 02:03:47 -0500 Subject: [PATCH] minor doc changes (#39) --- src/client/types.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/client/types.ts b/src/client/types.ts index f817cf42..a230eb17 100644 --- a/src/client/types.ts +++ b/src/client/types.ts @@ -110,6 +110,8 @@ export type DataAPIHttpOptions = /** * The options available for the {@link DataAPIClient} related to making HTTP requests using the native fetch API. * + * This will be the default client when running on non-node runtimes. + * * @public */ export interface FetchHttpClientOptions { @@ -131,6 +133,9 @@ export interface FetchHttpClientOptions { /** * The options available for the {@link DataAPIClient} related to making HTTP requests using the default http client. * + * This will be the default client when running on node. May cause issues on non-node runtimes. Prefer to use the + * {@link FetchHttpClientOptions} instead if that is the case. + * * @public */ export interface DefaultHttpClientOptions {