Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/src/publish/netlify/api/core/ApiRequestOptions.ts
6467 views
1
// deno-lint-ignore-file
2
/* istanbul ignore file */
3
/* tslint:disable */
4
/* eslint-disable */
5
export type ApiRequestOptions = {
6
readonly method:
7
| "GET"
8
| "PUT"
9
| "POST"
10
| "DELETE"
11
| "OPTIONS"
12
| "HEAD"
13
| "PATCH";
14
readonly url: string;
15
readonly path?: Record<string, any>;
16
readonly cookies?: Record<string, any>;
17
readonly headers?: Record<string, any>;
18
readonly query?: Record<string, any>;
19
readonly formData?: Record<string, any>;
20
readonly body?: any;
21
readonly mediaType?: string;
22
readonly responseHeader?: string;
23
readonly errors?: Record<number, string>;
24
};
25
26