@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
12 lines (11 loc) • 504 B
TypeScript
import type { OpenClawConfig } from "../config/config.js";
import { type ReactionLevel, type ResolvedReactionLevel as BaseResolvedReactionLevel } from "../utils/reaction-level.js";
export type TelegramReactionLevel = ReactionLevel;
export type ResolvedReactionLevel = BaseResolvedReactionLevel;
/**
* Resolve the effective reaction level and its implications.
*/
export declare function resolveTelegramReactionLevel(params: {
cfg: OpenClawConfig;
accountId?: string;
}): ResolvedReactionLevel;