mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-11 22:40:43 +00:00
16 lines
709 B
TypeScript
16 lines
709 B
TypeScript
import type { SlackAccountConfig } from "openclaw/plugin-sdk/config-types";
|
|
|
|
export type SlackAccountSurfaceFields = {
|
|
groupPolicy?: SlackAccountConfig["groupPolicy"];
|
|
textChunkLimit?: SlackAccountConfig["textChunkLimit"];
|
|
mediaMaxMb?: SlackAccountConfig["mediaMaxMb"];
|
|
reactionNotifications?: SlackAccountConfig["reactionNotifications"];
|
|
reactionAllowlist?: SlackAccountConfig["reactionAllowlist"];
|
|
replyToMode?: SlackAccountConfig["replyToMode"];
|
|
replyToModeByChatType?: SlackAccountConfig["replyToModeByChatType"];
|
|
actions?: SlackAccountConfig["actions"];
|
|
slashCommand?: SlackAccountConfig["slashCommand"];
|
|
dm?: SlackAccountConfig["dm"];
|
|
channels?: SlackAccountConfig["channels"];
|
|
};
|