I was wondering if it would be feasible for Spket to support JsDoc Tookit (Version 2) style Tags, maybe a configuration option to switch doc tag system?.
I was specially interested in the augmented @param syntax for custom properties
Code: Select all
/**
* @param userInfo Information about the user.
* @param userInfo.name The name of the user.
* @param userInfo.email The email of the user.
*/
function logIn(userInfo) {
doLogIn(userInfo.name, userInfo.email);
}