14 lines
282 B
TypeScript
14 lines
282 B
TypeScript
import { Type } from "@sinclair/typebox";
|
|
|
|
export function createSlackMessageToolBlocksSchema() {
|
|
return Type.Array(
|
|
Type.Object(
|
|
{},
|
|
{
|
|
additionalProperties: true,
|
|
description: "Slack Block Kit payload blocks (Slack only).",
|
|
},
|
|
),
|
|
);
|
|
}
|