UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

11 lines (10 loc) 272 B
export type APIResponse<Success, Failure> = SuccessfulResponse<Success> | FailedResponse<Failure>; export interface SuccessfulResponse<T> { ok: true; body: T; headers?: Record<string, any>; } export interface FailedResponse<T> { ok: false; error: T; }