From TypeDoc src\lib\utils\component.ts:
const childMappings: {host: ChildableComponent<any, any>, child: Function}[] = [];
Generates:

No information on the object literal, just object.
Likewise on this example:
/** Email details */
public email?: { id: string, isVerified?: boolean }
Generates:

Again, just object. Is it possible to get reflection information on the object literal?
From TypeDoc src\lib\utils\component.ts:
const childMappings: {host: ChildableComponent<any, any>, child: Function}[] = [];Generates:

No information on the object literal, just object.
Likewise on this example:
/** Email details */public email?: { id: string, isVerified?: boolean }Generates:

Again, just object. Is it possible to get reflection information on the object literal?