export type CapturedNetworkFailure = { endpoint: string; status: number; timestamp: string; distanceFromFailureInMilliseconds: number; method: string; request: { headers: { [any: string]: string; }[] | []; body?: { mimeType?: string; text?: string; params?: any[]; _sha1?: string; content?: string; }; }; response: { headers: { [any: string]: string; }[] | []; body?: { mimeType?: string; text?: string; params?: any[]; _sha1?: string; content?: string; }; }; }; export type NetworkRequestSequence = { step: number; method: string; endpoint: string; status: number; redirect_to?: string; duration_ms: number; }; export type CapturedConsoleLog = { type: "console"; messageType: "log" | "info" | "warning" | "error" | string; text: string; args: any[]; location: { url: string; lineNumber: number; columnNumber: number; }; time: number; pageId: string; }; export type PlaywrightNetworkTrace = { type: string; snapshot: { _frameref: string; _monotonicTime: number; startedDateTime: string; time: number; request: { method: string; url: string; httpVersion: string; cookies: any[]; headers: any[]; queryString: any[]; headersSize: number; bodySize: number; postData?: { mimeType: string; text?: string; params: any[]; _sha1?: string; _file?: string; }; }; response: { status: number; statusText: string; httpVersion: string; cookies: any[]; headers: any[]; headersSize: number; bodySize: number; redirectURL: string; _transferSize: number; content: { size: number; mimeType: string; text?: string; encoding?: string; _sha1?: string; _file?: string; compression?: number; }; }; cache: any; timings: { dns: number; connect: number; ssl: number; send: number; wait: number; receive: number; }; pageref: string; serverIPAddress: string; _serverPort: number; _securityDetails: { protocol: string; subjectName: string; issuer: string; validFrom: number; validTo: number; }; }; }; //# sourceMappingURL=types.d.ts.map