fix: Add missing insecureHTTPParser in RequestInit interface (#964)

This commit is contained in:
Jiralite 2021-03-11 02:51:31 +00:00 committed by GitHub
parent 9e50c5bbc1
commit 1780f5ae89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

1
@types/index.d.ts vendored
View File

@ -85,6 +85,7 @@ interface RequestInit {
protocol?: string;
size?: number;
highWaterMark?: number;
insecureHTTPParser?: boolean;
}
interface ResponseInit {