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) • 418 B
TypeScript
import { BlockBuilderBase } from '../internal/base';
import { BlockId, End, ExternalId } from '../internal/methods';
export interface FileParams {
blockId?: string;
externalId?: string;
}
export interface FileBuilder extends BlockId, End, ExternalId {
}
/**
* @@link https://api.slack.com/reference/block-kit/blocks#file
* @@displayName File
*/
export declare class FileBuilder extends BlockBuilderBase {
}