Skip to main content

Interface: StudioHttpClientOptions

Defined in: studioHttpClientOptions.types.ts:3

Host-owned transport configuration. A wrapped fetch can add credentials, headers, tracing, or any authentication policy without making those concerns part of the editor package.

Properties

baseUrl?

readonly optional baseUrl?: string

Defined in: studioHttpClientOptions.types.ts:4


fetch?

readonly optional fetch?: (input, init?) => Promise<Response>

Defined in: studioHttpClientOptions.types.ts:5

MDN Reference

Parameters

input

RequestInfo | URL

init?

RequestInit

Returns

Promise<Response>