openclaw/extensions/slack/src/message-tool-schema.ts
2026-03-19 01:08:23 -04:00

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).",
},
),
);
}