UNPKG

@yaakapp/api

Version:

Yaak is a desktop [API client](https://yaak.app/blog/yet-another-api-client) for interacting with REST, GraphQL, Server Sent Events (SSE), WebSocket, and gRPC APIs. It's built using Tauri, Rust, and ReactJS.

4 lines (3 loc) 116 B
export type JsonValue = number | string | boolean | Array<JsonValue> | { [key in string]?: JsonValue; } | null;