UNPKG

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.

15 lines (14 loc) 477 B
import { BlockBuilderBase } from '../internal/base'; import { BlockId, Elements, End } from '../internal/methods'; import type { ContextElement } from '../internal/types'; export interface ContextParams { blockId?: string; } export interface ContextBuilder extends BlockId, Elements<ContextElement>, End { } /** * @@link https://api.slack.com/reference/block-kit/blocks#context * @@displayName Context */ export declare class ContextBuilder extends BlockBuilderBase { }