From 71c4ae39fb8347365c5f69a08842168128ebd520 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 da714761e3859c..707e4b8370493b 100644 --- a/lib/internal/modules/esm/hooks.js +++ b/lib/internal/modules/esm/hooks.js @@ -72,6 +72,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.