The following results in an undefined error when a child type makes a field required that is not required in the parent. ```ts export interface Parent { fieldOne?: string } export interface Child extends Parent { fieldOne: string } ```
The following results in an undefined error when a child type makes a field required that is not required in the parent.