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.

16 lines (15 loc) 511 B
import { BitBuilderBase } from '../internal/base'; import { Blocks, Color, End, Fallback } from '../internal/methods'; import type { BlockBuilder } from '../internal/types'; export interface AttachmentParams { color?: string; fallback?: string; } export interface AttachmentBuilder extends Blocks<BlockBuilder>, Color, End, Fallback { } /** * @@link https://api.slack.com/reference/messaging/attachments * @@displayName Attachment */ export declare class AttachmentBuilder extends BitBuilderBase { }