14 lines
253 B
JavaScript
14 lines
253 B
JavaScript
|
declare({
|
||
|
globals: /** @lends */ {
|
||
|
|
||
|
/** document me */
|
||
|
'test': function() { },
|
||
|
|
||
|
/** @namespace */
|
||
|
'test1': {
|
||
|
|
||
|
/** document me */
|
||
|
'test2': function() { }
|
||
|
}
|
||
|
}
|
||
|
});
|