UNPKG

@squidcloud/client

Version:

A typescript implementation of the Squid client

10 lines (9 loc) 465 B
/** Optional configuration for an API call, including headers, query, and path parameters. */ export interface ApiOptions { /** Headers to include in the API request. */ headers?: Record<string, string | number | boolean>; /** Query parameters to append to the API URL. */ queryParams?: Record<string, string | number | boolean>; /** Path parameters to substitute in the API URL. */ pathParams?: Record<string, string | number | boolean>; }