mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-21 22:21:33 +00:00
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export const CHANNEL_MESSAGE_CAPABILITIES = [
|
|
"interactive",
|
|
"buttons",
|
|
"cards",
|
|
"components",
|
|
"blocks",
|
|
] as const;
|
|
|
|
export type ChannelMessageCapability = (typeof CHANNEL_MESSAGE_CAPABILITIES)[number];
|