mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a5b5b7d5ef
Migrate formatting to prettier for core/primitives from clang-format PR Close #55387
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
/**
|
|
* @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.io/license
|
|
*/
|
|
|
|
export {ComputedNode, createComputed} from './src/computed';
|
|
export {ValueEqualityFn, defaultEquals} from './src/equality';
|
|
export {setThrowInvalidWriteToSignalError} from './src/errors';
|
|
export {
|
|
REACTIVE_NODE,
|
|
Reactive,
|
|
ReactiveNode,
|
|
SIGNAL,
|
|
consumerAfterComputation,
|
|
consumerBeforeComputation,
|
|
consumerDestroy,
|
|
consumerMarkDirty,
|
|
consumerPollProducersForChange,
|
|
getActiveConsumer,
|
|
isInNotificationPhase,
|
|
isReactive,
|
|
producerAccessed,
|
|
producerNotifyConsumers,
|
|
producerUpdateValueVersion,
|
|
producerUpdatesAllowed,
|
|
setActiveConsumer,
|
|
} from './src/graph';
|
|
export {
|
|
SIGNAL_NODE,
|
|
SignalGetter,
|
|
SignalNode,
|
|
createSignal,
|
|
setPostSignalSetFn,
|
|
signalSetFn,
|
|
signalUpdateFn,
|
|
} from './src/signal';
|
|
export {Watch, WatchCleanupFn, WatchCleanupRegisterFn, createWatch} from './src/watch';
|
|
export {setAlternateWeakRefImpl} from './src/weak_ref';
|