config.js 479 B

12345678910111213141516171819202122
  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. * @constructor
  13. * @param persons
  14. * @config {string} Father The paternal person.
  15. * @config {string} Mother The maternal person.
  16. * @config {string[]} Children And the rest.
  17. */
  18. function Family(/**Object*/persons) {
  19. }