UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

9 lines (8 loc) 309 B
import type { EventEmitter } from "node:events"; import type { RuntimeEnv } from "../runtime.js"; type GatewayEmitter = Pick<EventEmitter, "on" | "removeListener">; export declare function attachDiscordGatewayLogging(params: { emitter?: GatewayEmitter; runtime: RuntimeEnv; }): () => void; export {};