• Overview
@angular/forms/signals

WithOptionalField

Type Alias

A type that allows the given type T to optionally have a field property.

API

    
      type WithOptionalField<T> = Omit<T, 'field'> & {field?: Field<unknown>}
    
    
Jump to details