@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
15 lines (14 loc) • 395 B
TypeScript
import type { BaseProbeResult } from "../channels/plugins/types.js";
export type SlackProbe = BaseProbeResult & {
status?: number | null;
elapsedMs?: number | null;
bot?: {
id?: string;
name?: string;
};
team?: {
id?: string;
name?: string;
};
};
export declare function probeSlack(token: string, timeoutMs?: number): Promise<SlackProbe>;