mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
28 lines
No EOL
340 B
JavaScript
28 lines
No EOL
340 B
JavaScript
/**
|
|
* @module my/module
|
|
*/
|
|
(function() {
|
|
|
|
/** document fooIn */
|
|
fooIn = function() {
|
|
};
|
|
|
|
/** @namespace */
|
|
bar = {
|
|
/** document bar.Zop */
|
|
zop: function() {
|
|
}
|
|
}
|
|
|
|
/** @constructor */
|
|
exports.Frotz = function() {
|
|
/** document exports.Frotz#quaz */
|
|
this.quaz = 1;
|
|
}
|
|
|
|
}) ();
|
|
|
|
/** document fooOut
|
|
*/
|
|
fooOut = function() {
|
|
}; |