From 88b2cb662da1317484b66a1c5d58b6bfc703daf1 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Fri, 8 Sep 2023 23:19:15 +0200 Subject: [PATCH] typings: fix missing property in `ExportedHooks` --- 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 b7e1afac31060d..827ad97dc5838a 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.