We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b72b2ba commit 4e5ad9dCopy full SHA for 4e5ad9d
lib/internal/modules/esm/fetch_module.js
@@ -21,9 +21,9 @@ const { once } = require('events');
21
const { compose } = require('stream');
22
/**
23
* @typedef CacheEntry
24
- * @property {Promise<string> | string} resolvedHREF
25
- * @property {Record<string, string>} headers
26
- * @property {Promise<Buffer> | Buffer} body
+ * @property {Promise<string> | string} resolvedHREF Parsed HREF of the request.
+ * @property {Record<string, string>} headers HTTP headers of the response.
+ * @property {Promise<Buffer> | Buffer} body Response body.
27
*/
28
29
0 commit comments