* @description * Returns a signal of the given key. It's first value is determined by the * current keys value in RxState. Whenever the key gets updated, the signal * will also be updated accordingly. * * @example * const fooSignal = state.signal('foo'); * * @param {Key} key
(key: Key)
| 900 | * @return Signal<State[Key]> |
| 901 | */ |
| 902 | signal<Key extends keyof State>(key: Key): Signal<State[Key]> { |
| 903 | return this.signalStoreProxy[key]; |
| 904 | } |
| 905 | |
| 906 | /** |
| 907 | * @description |
no outgoing calls
no test coverage detected