Closed
Description
From @Grim2d on June 18, 2016 10:11
I'm using "vanilla" javascript for development. If I write custom object type in JSDoc, it appears as any
or void
. It will be more helpful, if one can type custom types.
- VSCode Version: 1.1.1 (1.1.1)
- OS Version: OSX (10.11.4)
Steps to Reproduce:
1.
/**
* @param document {Object}
* @returns {Object}
*/
function addDocument(document) {
}
/**
* @param document {ProductProjection}
* @returns {ObjectId}
*/
function addDocument(document) {
}
Copied from original issue: microsoft/vscode#7847