showing results for - "how to extend a type in jsdoc"
Charlotte
07 May 2016
1 /**
2 * @typedef {Object} ChildType
3 * @property {String} childProp
4 *
5 * @typedef {Base & ChildType} Child
6 */
7