UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

9 lines (8 loc) 295 B
import type * as Intercom from "../index.js"; /** * Custom data set for this data. */ export type CustomAttributes = Record<string, CustomAttributes.Value>; export declare namespace CustomAttributes { type Value = string | number | Intercom.Datetime | Intercom.CustomObjectInstanceList; }