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.

21 lines (20 loc) 762 B
import { BlockBuilderBase } from '../internal/base'; import { AltText, AuthorName, BlockId, Description, End, ProviderIconUrl, ProviderName, ThumbnailUrl, Title, TitleUrl, VideoUrl } from '../internal/methods'; export interface VideoParams { blockId?: string; description?: string; providerIconUrl?: string; providerName?: string; thumbnailUrl?: string; title?: string; titleUrl?: string; videoUrl?: string; } export interface VideoBuilder extends AltText, AuthorName, BlockId, Description, End, ProviderIconUrl, ProviderName, ThumbnailUrl, Title, TitleUrl, VideoUrl { } /** * @@link https://api.slack.com/reference/block-kit/blocks#video * @@displayName Video */ export declare class VideoBuilder extends BlockBuilderBase { }