From ac06607f9e1dde0fdd200b6b11b0f0be236c51df Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sat, 9 Sep 2023 22:06:29 +0200 Subject: [PATCH] typings: fix missing property in `ExportedHooks` PR-URL: https://github.com/nodejs/node/pull/49567 Reviewed-By: Geoffrey Booth Reviewed-By: Jacob Smith Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Moshe Atlow --- lib/internal/modules/esm/hooks.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/internal/modules/esm/hooks.js b/lib/internal/modules/esm/hooks.js index 08040a25b14c89..05885050b82fc9 100644 --- a/lib/internal/modules/esm/hooks.js +++ b/lib/internal/modules/esm/hooks.js @@ -73,6 +73,7 @@ let importMetaInitializer; /** * @typedef {object} ExportedHooks + * @property {Function} initialize Customizations setup hook. * @property {Function} globalPreload Global preload hook. * @property {Function} resolve Resolve hook. * @property {Function} load Load hook.