Closed viters closed 1 year ago
Given the following typescript file:
interface A { a: string; } interface B extends A { b: string; }
OpenAPI will show only b property on type B. The below example does not work as well:
b
B
type B = A & { b: string; };
Can be related to https://github.com/grantila/typeconv/issues/15
Given the following typescript file:
OpenAPI will show only
b
property on typeB
. The below example does not work as well:Can be related to https://github.com/grantila/typeconv/issues/15