Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 426 Bytes

File metadata and controls

19 lines (16 loc) · 426 Bytes

@borrows Back

The @borrows tag allows you to borrow some documents from another symbol to the current one. It is useful especially when there are many references, where you don't want to duplicate the same documentation.

/**
 * email tool
 * @function 
 */
function email_tool() {}

module.exports = {
    /**
     * email
     * @borrows email_tool as email 
     */
    email: email_tool,
};