我有這樣一段代碼: //line 0
/**
* Constructor of class Person
* @class
* @constructor
* @param {string} name Name of person
* @param {string} surname Surname of person
* @param {number} age Age of pers
我想知道如何文檔的功能如下所示: var createInput = function() {
var type = this.type;
this.input = {
val: {},
type: type
};
}
技術上this.type的輸入參數和this.input是什麼,是從該對象返回。如何記錄這一點?
有沒有辦法讓光標移動到x:10,上時,它會顯示Point.prototype.x的JSdoc。目標是具有相同的JSdoc,比當我將鼠標移過pt.x時更多。 如果使用當前版本的Visual Studio代碼無法實現,是否可以通過編寫自己的擴展來實現?如果是這樣,vscode命名空間API的哪一部分與此有關? class Point {
/** The x property */
我有一個如下所示的函數。 /**
* @type Object
* @return {typeof hello} hello
*/
function hello() {
/**
* Prints some words
* @param {string} words - words to print
* @returns {string} word