Any chance you'd consider adding a description to the fields? Could be implemented for example using decorators, would look like this:
interface SomeType {
fieldWithNoDescription: string;
@Description("some description")
fieldWithDescription: string;
}
Any chance you'd consider adding a description to the fields? Could be implemented for example using decorators, would look like this: