From 183305c05e858fac570fd3c8a9f1df0d39115f94 Mon Sep 17 00:00:00 2001 From: Geert-Jan Zwiers Date: Sun, 15 Jan 2023 05:42:52 +0100 Subject: [PATCH] fix(ext/fetch): remove Response.trailer from types (#17284) --- ext/fetch/lib.deno_fetch.d.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/fetch/lib.deno_fetch.d.ts b/ext/fetch/lib.deno_fetch.d.ts index 319d4e8ed0..5031cc4315 100644 --- a/ext/fetch/lib.deno_fetch.d.ts +++ b/ext/fetch/lib.deno_fetch.d.ts @@ -421,7 +421,6 @@ declare class Response implements Body { readonly redirected: boolean; readonly status: number; readonly statusText: string; - readonly trailer: Promise; readonly type: ResponseType; readonly url: string; clone(): Response;