Skip to content

Commit

Permalink
Add missing Error type to typings
Browse files Browse the repository at this point in the history
  • Loading branch information
tkcranny committed Oct 4, 2024
1 parent 1db2d43 commit cd355ed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/core/types/zapier.custom.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ declare class RefreshAuthError extends Error {}
declare class ThrottledError extends Error {
constructor(message: string, delay?: number);
}
declare class ResponseError extends Error {
constructor(response: HttpResponse);
}

// copied http stuff from external typings
export interface HttpRequestOptions {
Expand Down

0 comments on commit cd355ed

Please sign in to comment.