From 2f73281dfd97fd254179770cbdbda5236f5f37fd Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Wed, 19 Jun 2024 19:37:01 +0200 Subject: [PATCH] fix(core): improve docs on afterRender hooks (#56525) This commit improves the documentation of the options parameter of the afterRender hooks. PR Close #56525 --- packages/core/src/render3/after_render_hooks.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/src/render3/after_render_hooks.ts b/packages/core/src/render3/after_render_hooks.ts index 4ed40d158bd..7ae1150d6dc 100644 --- a/packages/core/src/render3/after_render_hooks.ts +++ b/packages/core/src/render3/after_render_hooks.ts @@ -197,6 +197,7 @@ export function internalAfterNextRender( * * * @param callback A callback function to register + * @param options Options to control the behavior of the callback * * @usageNotes * @@ -278,6 +279,7 @@ export function afterRender(callback: VoidFunction, options?: AfterRenderOptions * * * @param callback A callback function to register + * @param options Options to control the behavior of the callback * * @usageNotes *