# SignalOrValue

> This document is the Markdown version of [formisch.dev/angular/api/SignalOrValue/](https://formisch.dev/angular/api/SignalOrValue/). For the complete documentation index, see [llms.txt](https://formisch.dev/llms.txt).

A type that can be either a value or an Angular signal that returns that value.

## Generics

- `TValue` `extends unknown`

## Definition

- `SignalOrValue` `TValue | Signal<TValue>`

### Explanation

Formisch accepts both plain values and signals wherever a form store or a field path is passed. This allows you to forward an input signal of your component directly, without unwrapping it first.
