UNPKG

@kontent-ai/core-sdk

Version:

Core package with shared / common functionality for Kontent.ai SDKs

8 lines (6 loc) 226 B
import type { HttpServiceStatus } from "../http/http.models.js"; import type { JsonValue } from "../models/json.models.js"; export type FetchResponse = { readonly statusCode: HttpServiceStatus; readonly json: JsonValue; };