aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/jsdoc-toolkit-2.4.0/app/test/config.js')
-rw-r--r--tools/jsdoc-toolkit-2.4.0/app/test/config.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/tools/jsdoc-toolkit-2.4.0/app/test/config.js b/tools/jsdoc-toolkit-2.4.0/app/test/config.js
new file mode 100644
index 0000000..0748a21
--- /dev/null
+++ b/tools/jsdoc-toolkit-2.4.0/app/test/config.js
@@ -0,0 +1,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) {
+
+}