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) • 453 B
TypeScript
import { BlockBuilderBase } from '../internal/base';
import { Accessory, BlockId, End, Fields, Text } from '../internal/methods';
export interface SectionParams {
blockId?: string;
text?: string;
}
export interface SectionBuilder extends Accessory, BlockId, End, Fields, Text {
}
/**
* @@link https://api.slack.com/reference/block-kit/blocks#section
* @@displayName Section
*/
export declare class SectionBuilder extends BlockBuilderBase {
}