v0.15.3
Fixes
-
preserve JSDoc tags in prop comments (456e740, #87)
Input
/** * This is a comment. * @see https://github.com/ * @deprecated this prop will be removed in the next major release. * @type {boolean | string} */ export let prop = true;
Output
export interface InputProps { /** * This is a comment. * @see https://github.com/ * @deprecated this prop will be removed in the next major release. * @default true */ prop?: boolean | string; }