1 | export type ResponseHeaders = {
|
2 | "cache-control"?: string;
|
3 | "content-length"?: number;
|
4 | "content-type"?: string;
|
5 | date?: string;
|
6 | etag?: string;
|
7 | "last-modified"?: string;
|
8 | link?: string;
|
9 | location?: string;
|
10 | server?: string;
|
11 | status?: string;
|
12 | vary?: string;
|
13 | "x-accepted-github-permissions"?: string;
|
14 | "x-github-mediatype"?: string;
|
15 | "x-github-request-id"?: string;
|
16 | "x-oauth-scopes"?: string;
|
17 | "x-ratelimit-limit"?: string;
|
18 | "x-ratelimit-remaining"?: string;
|
19 | "x-ratelimit-reset"?: string;
|
20 | [header: string]: string | number | undefined;
|
21 | };
|