Skip to content

Commit

Permalink
build: fix core package compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzamahmood committed Dec 10, 2024
1 parent 78b82ed commit a6c141a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/errors/responseValidationError.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class ResponseValidationError
public request: HttpRequest;
public statusCode: number;
public headers: Record<string, string>;
public result: never;
public result: never = undefined as never;
public body: string | Blob | NodeJS.ReadableStream;
public errors: SchemaValidationError[];

Expand Down

0 comments on commit a6c141a

Please sign in to comment.