1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-21 21:50:00 -05: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 GitHub
parent 1dc3609ff2
commit 2f15efbb3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;