Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tools/jsdoc-toolkit/app/test/config.js
blob: 0748a210a21bca86e007a4e74ee8e14f8e434329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @constructor
 * @param person The person.
 * @param {string} person.name The person's name.
 * @config {integer} age The person's age.
 * @config [id=1] Optional id number to use.
 * @param connection
 */
function Contact(person, connection) {

}

/**
 * @constructor
 * @param persons
 * @config {string} Father The paternal person.
 * @config {string} Mother The maternal person.
 * @config {string[]} Children And the rest.
 */
function Family(/**Object*/persons) {

}