UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

23 lines (22 loc) 854 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * A text area component is used to capture a large amount of text as input with a multi-line text box. You can submit the value of the text area by: * * - Using a ButtonComponent (which will submit all interactive components in the canvas) */ export interface TextAreaComponent { /** A unique identifier for the component. */ id: string; /** The text shown above the text area. */ label?: string; /** An example value shown inside the component when it's empty. */ placeholder?: string; /** An entered value which is already inside the component. */ value?: string; /** Styles the input as failed. Default is false. */ error?: boolean; /** Styles the input and prevents the action. Default is false. */ disabled?: boolean; }