UNPKG

slack-block-builder

Version:

Maintainable code for interactive Slack messages, modals, home tabs, and workflow steps. A must-have for the Slack Block Kit framework.

16 lines (15 loc) 679 B
import { ElementBuilderBase } from '../internal/base'; import { ActionId, DispatchActionOnCharacterEntered, DispatchActionOnEnterPressed, End, FocusOnLoad, InitialValue, Placeholder } from '../internal/methods'; export interface EmailInputParams { actionId?: string; initialValue?: string; placeholder?: string; } export interface EmailInputBuilder extends ActionId, DispatchActionOnCharacterEntered, DispatchActionOnEnterPressed, End, FocusOnLoad, InitialValue<string>, Placeholder { } /** * @@link https://api.slack.com/reference/block-kit/block-elements#email * @@displayName Email Input */ export declare class EmailInputBuilder extends ElementBuilderBase { }