mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
09baed082b
It's not used anymore. PR Close #52348
16 lines
997 B
TypeScript
16 lines
997 B
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 {createComputed} from './src/computed';
|
|
export {defaultEquals, ValueEqualityFn} from './src/equality';
|
|
export {setThrowInvalidWriteToSignalError} from './src/errors';
|
|
export {consumerAfterComputation, consumerBeforeComputation, consumerDestroy, consumerPollProducersForChange, getActiveConsumer, isInNotificationPhase, isReactive, producerAccessed, producerNotifyConsumers, producerUpdatesAllowed, producerUpdateValueVersion, Reactive, REACTIVE_NODE, ReactiveNode, setActiveConsumer, SIGNAL} from './src/graph';
|
|
export {createSignal, setPostSignalSetFn, SIGNAL_NODE, SignalGetter, SignalNode, signalSetFn, signalUpdateFn} from './src/signal';
|
|
export {createWatch, Watch, WatchCleanupFn, WatchCleanupRegisterFn} from './src/watch';
|
|
export {setAlternateWeakRefImpl} from './src/weak_ref';
|