Cyclic -> Circular Dependencies?
Open
- Dominant language
- TypeScript
- Stars
- 447
- Forks
- 10
- PR merge metrics
- No merged PRs in 30d
Description
The following is a valid schema, but typeconv fails with a cyclic dependency.
```ts
export interface D {}
export interface C extends D {}
export interface B {
fieldOne?: D;
}
export interface A extends B {
fieldOne?: C;
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.