mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
19 lines
204 B
JavaScript
19 lines
204 B
JavaScript
/**
|
|
* ONE
|
|
* @return {number} something
|
|
*/
|
|
function fooBar() {
|
|
return 1;
|
|
}
|
|
/**
|
|
* TWO
|
|
* @return {number} something
|
|
*/
|
|
function fooBaz() {
|
|
return 2;
|
|
}
|
|
/**
|
|
* this is a type
|
|
* @class Something
|
|
*/
|