@param
タグ例えば、プロパティのドキュメントを許可しますJSDocの3タグでオブジェクトのプロパティを文書化する方法:@this
/**
* @param {Object} userInfo Information about the user.
* @param {String} userInfo.name The name of the user.
* @param {String} userInfo.email The email of the user.
*/
@thisタグのプロパティはどのように文書化しますか?
/**
* @this {Object}
* @param {String} this.name The name of the user.
* @param {String} this.email The email of the user.
*/
私は、プロジェクトに携わっている人が誰か知っていますか? (ドキュメントがまだ作成されている...)
これは '' var Component = function(){} ''パラダイムでどのように動作しますか? –
これは私のためには機能しません。何も得られません。 –