@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
20 lines (19 loc) • 469 B
TypeScript
import { type RuntimeEnv } from "../runtime.js";
export declare function startWebLoginWithQr(opts?: {
verbose?: boolean;
timeoutMs?: number;
force?: boolean;
accountId?: string;
runtime?: RuntimeEnv;
}): Promise<{
qrDataUrl?: string;
message: string;
}>;
export declare function waitForWebLogin(opts?: {
timeoutMs?: number;
runtime?: RuntimeEnv;
accountId?: string;
}): Promise<{
connected: boolean;
message: string;
}>;