For the following jsdoc @param object, how do I assign a default value to name?
/**
@param inbound {{
email: string,
name: string,
req: Req
}}
*/
I have tried
/**
@param inbound {{
email: string,
name: [string=""],
req: Req
}}
*/
but that just turns it into an array [string, ""].
I'm also preferring this @param style over @typedef as vscode shows me the properties of the object using @param, while it doesn't show it for @typedef