Skip to content

Commit

Permalink
docs: generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
john committed Mar 13, 2019
1 parent 75d51dc commit 8e9f35e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Expand Up @@ -2145,6 +2145,20 @@ function quux () {
*/
function quux () {

}

/**
* @returns {undefined}
*/
function quux () {

}

/**
* @returns {void}
*/
function quux () {

}
````

Expand Down Expand Up @@ -2358,6 +2372,13 @@ function quux (bar) {
* @returns Array
*/
const quux = (bar) => bar.filter(({ corge }) => corge())

/**
* @inheritdoc
*/
function quux (foo) {
return "test"
}
````


Expand Down

0 comments on commit 8e9f35e

Please sign in to comment.