typeconv icon indicating copy to clipboard operation
typeconv copied to clipboard

Cyclic -> Circular Dependencies?

Open trevormil opened this issue 1 year ago • 0 comments

The following is a valid schema, but typeconv fails with a cyclic dependency.

export interface D {}
export interface C extends D {}
export interface B {
  fieldOne?: D;
}

export interface A extends B {
  fieldOne?: C;
}

trevormil avatar Mar 19 '24 22:03 trevormil