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.

17 lines (16 loc) 493 B
import { BitBuilderBase } from '../internal/base'; import { Description, End, Text, Url, Value } from '../internal/methods'; export interface OptionParams { description?: string; text?: string; url?: string; value?: string; } export interface OptionBuilder extends Description, End, Text, Url, Value { } /** * @@link https://api.slack.com/reference/block-kit/composition-objects#option * @@displayName Option */ export declare class OptionBuilder extends BitBuilderBase { }