diff options
author | Geert-Jan Zwiers <geertjanzwiers@protonmail.com> | 2023-01-15 05:42:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 04:42:52 +0000 |
commit | 2f15efbb3d468ea8c2be31c21f7df80c4f9ba368 (patch) | |
tree | 23756ebeb76a12ad31679526b67027beef9b3e53 /ext/fetch | |
parent | 1dc3609ff22e6a7be4d86d2ba983f81dfd8c1fd4 (diff) |
fix(ext/fetch): remove Response.trailer from types (#17284)
Diffstat (limited to 'ext/fetch')
-rw-r--r-- | ext/fetch/lib.deno_fetch.d.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/fetch/lib.deno_fetch.d.ts b/ext/fetch/lib.deno_fetch.d.ts index 319d4e8ed..5031cc431 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<Headers>; readonly type: ResponseType; readonly url: string; clone(): Response; |