Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/types/src/block-kit/blocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,11 +250,11 @@ export interface InputBlock extends Block {
* @description This block can be used with AI apps when you expect a markdown response from an LLM that can get lost in
* translation rendering in Slack. Providing it in a markdown block leaves the translating to Slack to ensure your message
* appears as intended. Note that passing a single block may result in multiple blocks after translation.
* @see {@link https://api.slack.com/reference/block-kit/blocks#markdown Markdown block reference}
* @see {@link https://api.slack.com/reference/block-kit/blocks#markdown Markdown block reference}.
*/
export interface MarkdownBlock extends Block {
/**
* @description The type of block. For a markdown block, `type` is always `input`.
* @description The type of block. For a markdown block, `type` is always `markdown`.
*/
type: 'markdown';
/**
Expand Down