私はJavaScriptメソッドのドキュメントをYUIDocで記述しようとしています。それは次のようになります。メソッドの "オブジェクト"パラメータを文書化する方法
今/**
Returns an instance of className
@method getInstance
@param {string} className the of the class used to create the instance
@param {Object} options these are options used to create the instance
**/
function getInstance(className, options) { ..... }
、オプションのオブジェクトは、私がこの@param
の文書にこの情報を追加するにはどうすればよいoptions.id
のようないくつかのパラメータ、options.single
などに
を持つことができますか?参照から
Googleの閉鎖コンパイラは、としてそれをマークアップするでしょう{:文字列、シングル:{IDどんな}}または{オブジェクト<文字列、文字列>。}それは一般的な辞書だが、これがあれば、私がわからない場合共通のシンタックス、またはその拡張子。このページの下部をご覧ください:https://developers.google.com/closure/compiler/docs/js-for-compiler – Dave