typeconv icon indicating copy to clipboard operation
typeconv copied to clipboard

Cannot read undefined

Open trevormil opened this issue 1 year ago • 0 comments

The following results in an undefined error when a child type makes a field required that is not required in the parent.

export interface Parent {
    fieldOne?: string
}

export interface Child extends Parent {
    fieldOne: string
}

trevormil avatar Mar 20 '24 14:03 trevormil