Displaying Type Names Instead of Full Declarations in TypeScript

noobish typescript question: how to you make typescript to show the name of the type instead of the full declaration of the type ? Example:

export type StatusAdt = S.Schema.Type<typeof StatusSchema>;

export const fromPrisma(...): Effect.Effect<StatutAdt>

// later 

const status = yield* fromPrisma(...); 
Was this page helpful?