Last active
December 16, 2020 03:16
-
-
Save sidouglas/a67d1a192a6d476680950bd7317db8dc to your computer and use it in GitHub Desktop.
WIP jsdoc cheatsheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {Object} model | |
* @param {boolean} [isOptional=false] // optional | |
* @param {{startDate:string, endDate: string}} [config={startDate:'startDate', endDate: 'endDate'}] //defaults set | |
* @param {object} defaults | |
* @param {number} defaults.nested // a nested object | |
* @return {{hasAnyDataSet: boolean, isValid: boolean, errorMessage: (string | null)}} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment