mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 14:20:12 +00:00
fix(zapier-platform-core): add missing HTTP verb
This commit is contained in:
2
types/zapier-platform-core/index.d.ts
vendored
2
types/zapier-platform-core/index.d.ts
vendored
@@ -15,7 +15,7 @@ export const version: string;
|
||||
|
||||
export interface HttpRequestOptions {
|
||||
url?: string;
|
||||
method?: "POST" | "GET" | "OPTIONS" | "HEAD" | "DELETE" | "PATCH";
|
||||
method?: "POST" | "GET" | "OPTIONS" | "HEAD" | "DELETE" | "PATCH" | "PUT";
|
||||
body?: string | Buffer | NodeJS.ReadableStream | object | null;
|
||||
headers?: { [name: string]: string };
|
||||
json?: object | any[] | null;
|
||||
|
||||
Reference in New Issue
Block a user