Skip to content

Commit

Permalink
fix: compialtion issue with ResponseValidationError
Browse files Browse the repository at this point in the history
  • Loading branch information
hamzamahmood committed Dec 11, 2024
1 parent a6c141a commit 1f1092f
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 = undefined as never;
public result!: never;
public body: string | Blob | NodeJS.ReadableStream;
public errors: SchemaValidationError[];

Expand Down

0 comments on commit 1f1092f

Please sign in to comment.