( opts?: InputOptions<ReadT, WriteT>, )
| 27 | } |
| 28 | |
| 29 | export function inputRequiredFunction<ReadT, WriteT = ReadT>( |
| 30 | opts?: InputOptions<ReadT, WriteT>, |
| 31 | ): InputSignalWithTransform<ReadT, WriteT> { |
| 32 | ngDevMode && assertInInjectionContext(input); |
| 33 | return createInputSignal(REQUIRED_UNSET_VALUE as never, opts); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * The `input` function allows declaration of inputs in directives and |
nothing calls this directly
no test coverage detected
searching dependent graphs…