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.

8 lines (7 loc) 242 B
import { CompositionObjectBase } from '../base'; import { ObjectType } from '../constants'; export declare class MarkdownObject extends CompositionObjectBase { type: ObjectType.Markdown; text: string; constructor(text: string); }