breathe-api
Version:
Model Context Protocol server for Breathe HR APIs with Swagger/OpenAPI support - also works with custom APIs
10 lines • 320 B
TypeScript
import { ApiRequest } from '../types/api.js';
export interface ApiResponse {
status: number;
statusText: string;
headers: Record<string, string>;
data: any;
duration: number;
}
export declare function makeApiRequest(request: ApiRequest): Promise<ApiResponse>;
//# sourceMappingURL=api-client.d.ts.map