Skip to content

v0.15.3

Compare
Choose a tag to compare
@metonym metonym released this 14 May 19:32
· 137 commits to main since this release

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;
    }