* Sets a new value for the form control. * * @param value The new value for the control. * @param options Configuration options that determine how the control propagates changes * and emits events when the value changes. * The configuration options are passed to the {@link AbstractCon
(
value: TValue,
options?: {
onlySelf?: boolean;
emitEvent?: boolean;
emitModelToViewChange?: boolean;
emitViewToModelChange?: boolean;
},
)
| 238 | * |
| 239 | */ |
| 240 | setValue( |
| 241 | value: TValue, |
| 242 | options?: { |
| 243 | onlySelf?: boolean; |
no test coverage detected