jsx-slack
Version:
Build JSON object for Slack Block Kit surfaces from JSX
11 lines (10 loc) • 368 B
TypeScript
import { DispatchActionConfig } from '@slack/types';
export interface UrlTextInputProps {
children?: never;
actionId?: string;
initialValue?: string;
placeholder?: string;
dispatchActionConfig?: DispatchActionConfig;
focusOnLoad?: boolean;
}
export declare const UrlTextInput: import("../../jsx-internals").BuiltInComponent<UrlTextInputProps>;