Skip to content

Commit

Permalink
Merge branch 'main' into renovate/major-octokit-monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 authored Sep 24, 2024
2 parents 99845b0 + 43fc3bd commit ba76c9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class RequestError extends Error {
/**
* Response object if a response was received
*/
response?: OctokitResponse<unknown>;
response?: OctokitResponse<unknown> | undefined;

constructor(
message: string,
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { RequestOptions, OctokitResponse } from "@octokit/types";

export type RequestErrorOptions = {
response?: OctokitResponse<unknown>;
response?: OctokitResponse<unknown> | undefined;
request: RequestOptions;
};

0 comments on commit ba76c9d

Please sign in to comment.