0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-10 06:07:03 -04:00

fix(ext/fetch): remove Response.trailer from types (#17284)

This commit is contained in:
Geert-Jan Zwiers 2023-01-15 05:42:52 +01:00 committed by Bartek Iwańczuk
parent ac056e0aa6
commit 183305c05e
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

View file

@ -421,7 +421,6 @@ declare class Response implements Body {
readonly redirected: boolean;
readonly status: number;
readonly statusText: string;
readonly trailer: Promise<Headers>;
readonly type: ResponseType;
readonly url: string;
clone(): Response;