UNPKG

fox-block-builder

Version:

Maintainable code for loop slack-block-kit-like modal builder

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