UNPKG

jsx-slack

Version:

Build JSON object for Slack Block Kit surfaces from JSX

14 lines (13 loc) 447 B
import { DispatchActionConfig } from '@slack/types'; export interface PlainTextInputProps { children?: never; actionId?: string; initialValue?: string; maxLength?: number; minLength?: number; multiline?: boolean; placeholder?: string; dispatchActionConfig?: DispatchActionConfig; focusOnLoad?: boolean; } export declare const PlainTextInput: import("../../jsx-internals").BuiltInComponent<PlainTextInputProps>;