• Overview
@angular/forms/signals

ParseResult

interface

Result of parsing a raw value into a model value.

API

    
      interface ParseResult<TValue> {  readonly value?: TValue | undefined;  readonly errors?: readonly WithoutFieldTree[] | undefined;}
    
    

value

TValue | undefined

The parsed value, if parsing was successful.

errors

readonly WithoutFieldTree[] | undefined

Errors encountered during parsing, if any.

Jump to details