Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change IAPIErrorResponse.http from string to number
  • Loading branch information
Sticks committed Feb 13, 2023
1 parent 989d0a2 commit 502fe71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/objects/APIErrorResponse.ts
@@ -1,9 +1,9 @@
export class IAPIErrorResponse {
code: number;
http: string;
http: number;
error: string;

constructor(code: number, http: string, error: string) {
constructor(code: number, http: number, error: string) {
this.code = code;
this.http = http;
this.error = error;
Expand Down

0 comments on commit 502fe71

Please sign in to comment.