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) • 491 B
TypeScript
import { BlockBuilderBase } from '../internal/base';
import { BlockId, Elements, End } from '../internal/methods';
import type { ActionsElementBuilder } from '../internal/types';
export interface ActionsParams {
blockId?: string;
}
export interface ActionsBuilder extends BlockId, End, Elements<ActionsElementBuilder> {
}
/**
* @@link https://api.slack.com/reference/block-kit/blocks#actions
* @@displayName Actions
*/
export declare class ActionsBuilder extends BlockBuilderBase {
}