(opts?: ModelOptions)
| 21 | } |
| 22 | |
| 23 | export function modelRequiredFunction<T>(opts?: ModelOptions): ModelSignal<T> { |
| 24 | ngDevMode && assertInInjectionContext(model); |
| 25 | |
| 26 | return createModelSignal(REQUIRED_UNSET_VALUE as T, opts); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * `model` declares a writeable signal that is exposed as an input/output pair on the containing |
nothing calls this directly
no test coverage detected
searching dependent graphs…