jsx-slack
Version:
Build JSON object for Slack Block Kit surfaces from JSX
14 lines (13 loc) • 455 B
TypeScript
import { DispatchActionConfig } from '@slack/types';
export interface NumberTextInputProps {
children?: never;
actionId?: string;
initialValue?: string;
placeholder?: string;
isDecimalAllowed?: boolean;
maxValue?: string;
minValue?: string;
dispatchActionConfig?: DispatchActionConfig;
focusOnLoad?: boolean;
}
export declare const NumberTextInput: import("../../jsx-internals").BuiltInComponent<NumberTextInputProps>;