Skip to content

Commit

Permalink
typings: fix JSDoc in internal/modules/esm/hooks
Browse files Browse the repository at this point in the history
PR-URL: #50887
Reviewed-By: Yagiz Nizipli <[email protected]>
Reviewed-By: Vinícius Lourenço Claro Cardoso <[email protected]>
Reviewed-By: Jacob Smith <[email protected]>
  • Loading branch information
himself65 authored and richardlau committed Mar 25, 2024
1 parent f13643d commit 6375540
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/internal/modules/esm/hooks.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ function defineImportAssertionAlias(context) {
* @typedef {object} KeyedHook
* @property {Function} fn The hook function.
* @property {URL['href']} url The URL of the module.
* @property {KeyedHook?} next The next hook in the chain.
*/

// [2] `validate...()`s throw the wrong error
Expand Down Expand Up @@ -804,7 +805,7 @@ function pluckHooks({
* A utility function to iterate through a hook chain, track advancement in the
* chain, and generate and supply the `next<HookName>` argument to the custom
* hook.
* @param {Hook} current The (currently) first hook in the chain (this shifts
* @param {KeyedHook} current The (currently) first hook in the chain (this shifts
* on every call).
* @param {object} meta Properties that change as the current hook advances
* along the chain.
Expand Down

0 comments on commit 6375540

Please sign in to comment.