Files
Joey Perrott a5b5b7d5ef refactor: migrate core/primitives to prettier formatting (#55387)
Migrate formatting to prettier for core/primitives from clang-format

PR Close #55387
2024-04-17 15:55:32 -07:00

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';