diff options
author | Marcos Casagrande <marcoscvp90@gmail.com> | 2020-05-25 18:55:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-25 12:55:16 -0400 |
commit | 08f74e1f6a180e83e13f5570811b8b7fcec90e9f (patch) | |
tree | bad2721de533bc6eb80c029754b88a6c3fb15444 /cli/js/web/request.ts | |
parent | aef9f22462d287a5d18e517aabd8f03210d159b8 (diff) |
fix(cli/web/fetch): Make Response constructor standard (#5787)
Diffstat (limited to 'cli/js/web/request.ts')
-rw-r--r-- | cli/js/web/request.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/web/request.ts b/cli/js/web/request.ts index 8fe93babe..286aaff56 100644 --- a/cli/js/web/request.ts +++ b/cli/js/web/request.ts @@ -39,7 +39,7 @@ export class Request extends body.Body implements domTypes.Request { init = {}; } - let b: body.BodySource; + let b: BodyInit; // prefer body from init if (init.body) { |