| 1 | /** |
| 2 | * @constructor |
| 3 | * @param person The person. |
| 4 | * @param {string} person.name The person's name. |
| 5 | * @config {integer} age The person's age. |
| 6 | * @config [id=1] Optional id number to use. |
| 7 | * @param connection |
| 8 | */ |
| 9 | function Contact(person, connection) { |
| 10 | |
| 11 | } |
| 12 | |
| 13 | /** |
| 14 | * @constructor |
| 15 | * @param persons |
| 16 | * @config {string} Father The paternal person. |
| 17 | * @config {string} Mother The maternal person. |
| 18 | * @config {string[]} Children And the rest. |
| 19 | */ |
| 20 | function Family(/**Object*/persons) { |
| 21 | |
| 22 | } |