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.

3 lines (2 loc) 115 B
export type AtLeast<T, K extends keyof T> = Partial<T> & Pick<T, K>; export type MaybePromise<T> = Promise<T> | T;