Files
integrations/ts/protocols/http/index.ts
T

7 lines
124 B
TypeScript

export interface IHttpProbeResult {
url: string;
status: number;
headers: Record<string, string>;
body?: unknown;
}