typeconv
typeconv copied to clipboard
Cannot read undefined
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
}