MCPcopy Create free account
hub / github.com/LeoninCS/DevDesk / HttpTestResponse

Interface HttpTestResponse

frontend/src/api/httptest.ts:10–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

8}
9
10export interface HttpTestResponse {
11 status: string;
12 status_code: number;
13 header: Record<string, string[]>;
14 body: string;
15}
16
17export function sendHttpTest(payload: HttpTestPayload) {
18 return http.post<HttpTestResponse>("/httptest/do", payload);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected