File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
packages/core/src/render3/reactivity Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -38,8 +38,6 @@ import {emitEffectCreatedEvent, setInjectorProfilerContext} from '../debug/injec
3838
3939/**
4040 * A global reactive effect, which can be manually destroyed.
41- *
42- * @developerPreview
4341 */
4442export interface EffectRef {
4543 /**
@@ -62,8 +60,6 @@ export class EffectRefImpl implements EffectRef {
6260
6361/**
6462 * Options passed to the `effect` function.
65- *
66- * @developerPreview
6763 */
6864export interface CreateEffectOptions {
6965 /**
@@ -100,15 +96,11 @@ export interface CreateEffectOptions {
10096 * An effect can, optionally, register a cleanup function. If registered, the cleanup is executed
10197 * before the next effect run. The cleanup function makes it possible to "cancel" any work that the
10298 * previous effect run might have started.
103- *
104- * @developerPreview
10599 */
106100export type EffectCleanupFn = ( ) => void ;
107101
108102/**
109103 * A callback passed to the effect function that makes it possible to register cleanup logic.
110- *
111- * @developerPreview
112104 */
113105export type EffectCleanupRegisterFn = ( cleanupFn : EffectCleanupFn ) => void ;
114106
@@ -127,8 +119,6 @@ export type EffectCleanupRegisterFn = (cleanupFn: EffectCleanupFn) => void;
127119 * and have no connection to the component tree or change detection.
128120 *
129121 * `effect()` must be run in injection context, unless the `injector` option is manually specified.
130- *
131- * @developerPreview
132122 */
133123export function effect (
134124 effectFn : ( onCleanup : EffectCleanupRegisterFn ) => void ,
You can’t perform that action at this time.
0 commit comments