如何使用通用键名记录对象

如何使用通用键名记录对象

本文介绍了JSDoc - 如何使用通用键名记录对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在 JSDoc文档中。

What you are describing is covered in the @type JSDoc documentation.

对象应该记录如下:

/**
 * @typedef Person
 * @type {Object}
 * @property {number} age - the person's age
 * @property {string} hobby - the person's hobby
 */

/**
 * ExampleClass
 */
class ExampleClass {

    /**
     * Creates a dictionary of people
     * @param {Object.<string, Person>} peopleObj - an object with names as keys and Person objects as values.
     * @memberof ExampleClass
     */
     constructor(peopleObj) {}
}

这篇关于JSDoc - 如何使用通用键名记录对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-28 03:21