FormidableLabs / FormidableLabs/ts-simplify
Cyclic types
Open
- Dominant language
- TypeScript
- Stars
- 20
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
```typescript
export type Type = {
referencedType?: Type;
}
export interface Interface {
referencedInterface?: Interface;
}
```
It should leave those alone. And should also consider longer cycles, ie A => B => C => A
Contributor guide
Assessment
This issue has not been assessed yet.