Displaying Schema Annotations as JSDoc in TypeScript
Hi, is it possible to show type JSdoc when we use schema annotations? For example, this type
To show the annotation as a JSDoc like this?
To show the annotation as a JSDoc like this?

export const PhoneNumberId = TrimmedNonEmptyString.pipe(
S.brand('PhoneNumberId'),
S.annotations({
description:
'Phone number ID of the phone number of the user sending the message.',
example: '1234-id',
}),
)
export type PhoneNumberId = typeof PhoneNumberId.Type