Initial boiler plate project
This commit is contained in:
44
node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts
generated
vendored
Normal file
44
node_modules/next/dist/server/web/spec-extension/adapters/headers.d.ts
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
/// <reference types="node" />
|
||||
import type { IncomingHttpHeaders } from 'http';
|
||||
export type ReadonlyHeaders = Headers & {
|
||||
/** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */
|
||||
append(...args: any[]): void;
|
||||
/** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */
|
||||
set(...args: any[]): void;
|
||||
/** @deprecated Method unavailable on `ReadonlyHeaders`. Read more: https://nextjs.org/docs/app/api-reference/functions/headers */
|
||||
delete(...args: any[]): void;
|
||||
};
|
||||
export declare class HeadersAdapter extends Headers {
|
||||
private readonly headers;
|
||||
constructor(headers: IncomingHttpHeaders);
|
||||
/**
|
||||
* Seals a Headers instance to prevent modification by throwing an error when
|
||||
* any mutating method is called.
|
||||
*/
|
||||
static seal(headers: Headers): ReadonlyHeaders;
|
||||
/**
|
||||
* Merges a header value into a string. This stores multiple values as an
|
||||
* array, so we need to merge them into a string.
|
||||
*
|
||||
* @param value a header value
|
||||
* @returns a merged header value (a string)
|
||||
*/
|
||||
private merge;
|
||||
/**
|
||||
* Creates a Headers instance from a plain object or a Headers instance.
|
||||
*
|
||||
* @param headers a plain object or a Headers instance
|
||||
* @returns a headers instance
|
||||
*/
|
||||
static from(headers: IncomingHttpHeaders | Headers): Headers;
|
||||
append(name: string, value: string): void;
|
||||
delete(name: string): void;
|
||||
get(name: string): string | null;
|
||||
has(name: string): boolean;
|
||||
set(name: string, value: string): void;
|
||||
forEach(callbackfn: (value: string, name: string, parent: Headers) => void, thisArg?: any): void;
|
||||
entries(): IterableIterator<[string, string]>;
|
||||
keys(): IterableIterator<string>;
|
||||
values(): IterableIterator<string>;
|
||||
[Symbol.iterator](): IterableIterator<[string, string]>;
|
||||
}
|
||||
Reference in New Issue
Block a user