-
Notifications
You must be signed in to change notification settings - Fork 27.1k
Expand file tree
/
Copy pathcore_reactivity_export_internal.ts
More file actions
30 lines (28 loc) · 1.07 KB
/
core_reactivity_export_internal.ts
File metadata and controls
30 lines (28 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
export {SIGNAL as ɵSIGNAL} from '../primitives/signals';
export {isSignal, isWritableSignal, Signal, ValueEqualityFn} from './render3/reactivity/api';
export {computed, CreateComputedOptions} from './render3/reactivity/computed';
export {
CreateSignalOptions,
signal,
WritableSignal,
ɵunwrapWritableSignal,
} from './render3/reactivity/signal';
export {linkedSignal} from './render3/reactivity/linked_signal';
export {untracked} from './render3/reactivity/untracked';
export {
CreateEffectOptions,
effect,
EffectRef,
EffectCleanupFn,
EffectCleanupRegisterFn,
} from './render3/reactivity/effect';
export {EffectScheduler as ɵEffectScheduler} from './render3/reactivity/root_effect_scheduler';
export {afterRenderEffect, ɵFirstAvailableSignal} from './render3/reactivity/after_render_effect';
export {assertNotInReactiveContext} from './render3/reactivity/asserts';