Skip to content

Commit

Permalink
fix(typescript): add a missing PATCH method to requestResource
Browse files Browse the repository at this point in the history
Resolves #368
  • Loading branch information
ffilipus committed May 25, 2021
1 parent e7ded61 commit 6b2c3ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Expand Up @@ -513,7 +513,7 @@ export class Client {
options?: {
headers?: object;
body?: string | Buffer;
method?: "GET" | "POST" | "PUT" | "HEAD" | "DELETE" | "OPTIONS" | "TRACE";
method?: "GET" | "POST" | "PUT" | "HEAD" | "DELETE" | "OPTIONS" | "TRACE" | "PATCH";
tokenType?: string;
DPoP?: DPoPInput;
}
Expand Down

0 comments on commit 6b2c3ce

Please sign in to comment.