mirror of
https://github.com/nodejs/node.git
synced 2025-12-28 07:50:41 +00:00
typings: add missing properties in HTTPParser
PR-URL: https://github.com/nodejs/node/pull/60257 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chemi Atlow <chemi@atlow.co.il> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
355252c749
commit
2a18aee4aa
8
typings/internalBinding/http_parser.d.ts
vendored
8
typings/internalBinding/http_parser.d.ts
vendored
@ -27,10 +27,18 @@ declare namespace InternalHttpParserBinding {
|
||||
static kLenientHeaders: number;
|
||||
static kLenientChunkedLength: number;
|
||||
static kLenientKeepAlive: number;
|
||||
static kLenientTransferEncoding: number;
|
||||
static kLenientVersion: number;
|
||||
static kLenientDataAfterClose: number;
|
||||
static kLenientOptionalLFAfterCR: number;
|
||||
static kLenientOptionalCRLFAfterChunk: number;
|
||||
static kLenientOptionalCRBeforeLF: number;
|
||||
static kLenientSpacesAfterChunkSize: number;
|
||||
static kLenientAll: number;
|
||||
|
||||
close(): void;
|
||||
free(): void;
|
||||
remove(): void;
|
||||
execute(buffer: Buffer): Error | Buffer;
|
||||
finish(): Error | Buffer;
|
||||
initialize(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user