• Overview
@angular/core

AfterRenderEffectOptions

interface
stable

Options passed to afterRenderEffect.

API

    
      interface AfterRenderEffectOptions extends AfterRenderOptions {}
    
    

debugName

string | undefined

A debug name for the effect. Used in Angular DevTools to identify the effect.

injector

Injector | undefined

The Injector to use during creation.

If this is not provided, the current injection context will be used instead (via inject).

manualCleanup

boolean | undefined

Whether the hook should require manual cleanup.

If this is false (the default) the hook will automatically register itself to be cleaned up with the current DestroyRef.

Jump to details