diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-05-19 00:24:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-18 17:24:01 +0200 |
commit | cda09c166fd075590c1f8dd313d4f57a560ecbd8 (patch) | |
tree | 96cd94b36cc0b357f6d98964f3c46ad5a31391f7 /extensions/fetch/23_response.js | |
parent | 21d62b9b9ed7b4cd375a2815bdd9d8ccaa85e537 (diff) |
chore: update deno_lint binary used in CI to v0.5.0 (#10652)
Diffstat (limited to 'extensions/fetch/23_response.js')
-rw-r--r-- | extensions/fetch/23_response.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/fetch/23_response.js b/extensions/fetch/23_response.js index 6bd7a6487..6d9874c6a 100644 --- a/extensions/fetch/23_response.js +++ b/extensions/fetch/23_response.js @@ -15,7 +15,7 @@ ((window) => { const webidl = window.__bootstrap.webidl; const { HTTP_TAB_OR_SPACE, regexMatcher } = window.__bootstrap.infra; - const { InnerBody, extractBody, mixinBody } = window.__bootstrap.fetchBody; + const { extractBody, mixinBody } = window.__bootstrap.fetchBody; const { getLocationHref } = window.__bootstrap.location; const mimesniff = window.__bootstrap.mimesniff; const { URL } = window.__bootstrap.url; @@ -47,7 +47,7 @@ * @property {number} status * @property {string} statusMessage * @property {[string, string][]} headerList - * @property {null | InnerBody} body + * @property {null | typeof __window.bootstrap.fetchBody.InnerBody} body * @property {string} [error] */ |