For a function like this...
function example() { var X = 100; ... var Y = \'abc\'; ... return Z; }
I need to explain the purpose
Best thing that worked for me:
/** * @name AssetAutoGenerationOption * @type {"all" | "master" | "off"} */ export type AssetAutoGenerationOption = "all" | "master" | "off";