Cannot read undefined
Open
- Dominant language
- TypeScript
- Stars
- 447
- Forks
- 10
- PR merge metrics
- No merged PRs in 30d
Description
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
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.