UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

9 lines (8 loc) 296 B
import type * as Intercom from "../index.mjs"; /** * 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; }