UNPKG

@theventures/caret

Version:

Unofficial Node.js API client for the Caret HTTP API

9 lines (8 loc) 261 B
export interface APIErrorData { message?: string; code?: string; details?: string; errors?: Record<string, string>; [key: string]: unknown; } export type ResponseBody = Record<string, unknown> | unknown[] | string | number | boolean | null;