mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
19 lines
No EOL
190 B
JavaScript
19 lines
No EOL
190 B
JavaScript
/**
|
|
* @namespace
|
|
*/
|
|
var A = {};
|
|
|
|
/**
|
|
* @namespace
|
|
* @alias A.F
|
|
*/
|
|
var f = {};
|
|
|
|
(function(ns) {
|
|
/**
|
|
* @return {String}
|
|
*/
|
|
f.method = function(){};
|
|
|
|
ns.F = f;
|
|
})(A); |