UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

15 lines (14 loc) 400 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * A field-value pair component for use in a data table. */ export interface DataTableItem { /** The type of component you are rendering. */ type: "field-value"; /** The text of the key in your key-value pair. */ field: string; /** The text of the value in your key-value pair. */ value: string; }