I have some larger schemas on which i declare types to user in services
export type VolMetricsOutput = Schema.Schema.Type<typeof VolMetricsOutput>;
If I use that type, the signatures on services become unreadable because TS expands the whole type definition
I resorted to this, but that doesn't show any props - just the interface name
export interface VolMetricsOutputInterface extends Schema.Schema.Type<typeof VolMetricsOutput> {}
Is there any workarounds exist to see types generated from schemas but in a more contained way?