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) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BlockType = void 0;
var BlockType;
(function (BlockType) {
BlockType["Section"] = "section";
BlockType["Actions"] = "actions";
BlockType["Context"] = "context";
BlockType["Input"] = "input";
BlockType["File"] = "file";
BlockType["Divider"] = "divider";
BlockType["Image"] = "image";
BlockType["Header"] = "header";
BlockType["Video"] = "video";
})(BlockType = exports.BlockType || (exports.BlockType = {}));