export interface Thing {
/** Useful explanation of usage. */
property: string;
}
export const example: Thing = {
/**/property: "This is a string value"
};
Request quick info at /**/.
In TypeScript 5.9, the tooltip will contain the JSDoc content from within Thing. In 7.0, that is no longer the case.