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) • 350 B
TypeScript
import { CompositionObjectBase } from '../base';
import { DispatchOnType } from '../constants';
export declare type DispatchActionsConfigParams = DispatchOnType[];
export declare class DispatchActionsConfigurationObject extends CompositionObjectBase {
trigger_actions_on: DispatchOnType[];
constructor(params: DispatchActionsConfigParams);
}