UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

17 lines (16 loc) 474 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * A single select option component that can be selected. */ export interface SingleSelectOption { /** The type of component you are rendering. */ type: "option"; /** A unique identifier for the option. */ id: string; /** The text shown within this option. */ text: string; /** Styles the option and prevents the action. Default is false. */ disabled?: boolean; }