UNPKG

fox-block-builder

Version:

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

12 lines (11 loc) 427 B
import { OnSelectParams, PlainTextObject, Prop } from '../../internal'; import { FoxOption } from '../../internal/interfaces/bits.interfaces'; export declare class OptionRdo implements FoxOption { value?: string; text: PlainTextObject; description?: PlainTextObject; [Prop.OnSelect]?: OnSelectParams; setValue(value: string): this; setText(text: string): void; setDescription(text: string): this; }