Files
openclaw/extensions/slack/src/message-tool-schema.ts
2026-04-23 04:59:42 +01:00

14 lines
272 B
TypeScript

import { Type } from "typebox";
export function createSlackMessageToolBlocksSchema() {
return Type.Array(
Type.Object(
{},
{
additionalProperties: true,
description: "Slack Block Kit payload blocks (Slack only).",
},
),
);
}