W3cubDocs

/Angular

EffectCleanupFn

type-alias developer preview

An effect can, optionally, register a cleanup function. If registered, the cleanup is executed before the next effect run. The cleanup function makes it possible to "cancel" any work that the previous effect run might have started.

type EffectCleanupFn = () => void;

© 2010–2023 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://angular.io/api/core/EffectCleanupFn