Skip to content

HttpZkConfigProviderData

Defined in: src/ZkConfig.ts:96

Represents an HTTP ZK config provider.

This is plain data — use module functions to operate on it.

Since

0.2.0

Properties

baseUrl

readonly baseUrl: string

Defined in: src/ZkConfig.ts:98

Base URL for ZK artifacts


cache

readonly cache: Map<string, ZkConfig>

Defined in: src/ZkConfig.ts:102

Internal cache for loaded configs


fetchFn()

readonly fetchFn: {(input, init?): Promise<Response>; (input, init?): Promise<Response>; }

Defined in: src/ZkConfig.ts:100

Fetch function to use

Call Signature

(input, init?): Promise<Response>

MDN Reference

Parameters
input

URL | RequestInfo

init?

RequestInit

Returns

Promise<Response>

Call Signature

(input, init?): Promise<Response>

MDN Reference

Parameters
input

string | URL | Request

init?

RequestInit

Returns

Promise<Response>