UNPKG

fox-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.

19 lines (18 loc) 837 B
import { ElementBuilderBase } from '../internal/base'; import { ActionId, DispatchActionOnCharacterEntered, DispatchActionOnEnterPressed, End, FocusOnLoad, InitialValue, IsDecimalAllowed, MaxValue, MinValue, Placeholder } from '../internal/methods'; export interface NumberInputParams { actionId?: string; initialValue?: number; isDecimalAllowed?: boolean; minValue?: number; maxValue?: number; placeholder?: string; } export interface NumberInputBuilder extends ActionId, DispatchActionOnCharacterEntered, DispatchActionOnEnterPressed, End, FocusOnLoad, InitialValue<number>, IsDecimalAllowed, MaxValue, MinValue, Placeholder { } /** * @@link https://api.slack.com/reference/block-kit/block-elements#number * @@displayName Email Input */ export declare class NumberInputBuilder extends ElementBuilderBase { }