mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-13 03:23:18 +03:00
10 lines
146 B
JavaScript
10 lines
146 B
JavaScript
|
(function() {
|
||
|
|
||
|
/** @alias ns.Myclass# */
|
||
|
var x = {
|
||
|
/** document me */
|
||
|
myProperty: 'foo'
|
||
|
}
|
||
|
|
||
|
return x;
|
||
|
})();
|