Files

7 lines
124 B
TypeScript

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