UNPKG

@autifyhq/muon

Version:

Muon - AI-Powered Playwright Test Coding Agent with Advanced Test Fixing Capabilities

21 lines (20 loc) 541 B
import type { MuonAuth } from './auth.js'; export interface HttpClientConfig { baseUrl: string; apiKey?: string; accessToken?: string; timeout?: number; auth?: MuonAuth; } export declare class MuonHTTPClient { private config; constructor(config: HttpClientConfig); request(path: string, options?: { method: string; body?: string; headers?: Record<string, string>; stream?: boolean; }): Promise<any>; private handleStreamingResponse; healthCheck(): Promise<void>; }