API > @angular/core code Signallink type-alias Contents Description A reactive value which notifies consumers of any changes. See more... type Signal<T> = (() => T) & { [SIGNAL]: unknown; }; Descriptionlink Signals are functions which returns their current value. To access the current value of a signal, call it. Ordinary values can be turned into Signals with the signal function.