UNPKG

@kontent-ai/core-sdk

Version:

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

10 lines (6 loc) 275 B
import type { EmptyObject } from "./utility.models.js"; export type JsonValue = string | number | null | boolean | JsonObject | JsonArray | EmptyObject; export interface JsonObject { readonly [property: string]: JsonValue; } export type JsonArray = readonly JsonValue[];