mirror of
https://github.com/moltbot/moltbot.git
synced 2026-04-23 14:45:46 +00:00
fix(twitch): align markdown table mode type
This commit is contained in:
@@ -5,7 +5,8 @@
|
||||
* resolves agent routes, and handles replies.
|
||||
*/
|
||||
|
||||
import type { ReplyPayload, OpenClawConfig } from "../api.js";
|
||||
import type { MarkdownTableMode, OpenClawConfig } from "openclaw/plugin-sdk/config-runtime";
|
||||
import type { ReplyPayload } from "../api.js";
|
||||
import { createChannelReplyPipeline } from "../api.js";
|
||||
import { checkTwitchAccessControl } from "./access-control.js";
|
||||
import { getOrCreateClientManager } from "./client-manager-registry.js";
|
||||
@@ -145,7 +146,7 @@ async function deliverTwitchReply(params: {
|
||||
account: TwitchAccountConfig;
|
||||
accountId: string;
|
||||
config: unknown;
|
||||
tableMode: "off" | "plain" | "markdown" | "bullets" | "code";
|
||||
tableMode: MarkdownTableMode;
|
||||
runtime: TwitchRuntimeEnv;
|
||||
statusSink?: (patch: { lastInboundAt?: number; lastOutboundAt?: number }) => void;
|
||||
}): Promise<void> {
|
||||
|
||||
Reference in New Issue
Block a user