@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
16 lines (15 loc) • 523 B
TypeScript
export type ChromeExtensionRelayServer = {
host: string;
port: number;
baseUrl: string;
cdpWsUrl: string;
extensionConnected: () => boolean;
stop: () => Promise<void>;
};
export declare function getChromeExtensionRelayAuthHeaders(url: string): Record<string, string>;
export declare function ensureChromeExtensionRelayServer(opts: {
cdpUrl: string;
}): Promise<ChromeExtensionRelayServer>;
export declare function stopChromeExtensionRelayServer(opts: {
cdpUrl: string;
}): Promise<boolean>;