Bug 1994819 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

In updating the types in Bug 1991104, we found that declaring a JSDoc description on a property in our custom elements don't show up on that element's Args Table in Storybook. We should fix this so we can declare JSDoc descriptions in a single spot.
In updating the types in Bug 1991104, we found that declaring a JSDoc description on a property in our custom elements like the following don't show up on that element's Args Table in Storybook. 


```js
export default class MozMessageBar extends MozLitElement {
  constructor() {
    super();
    /**
     * The description for message property here!
     * @type {string}
     */
    this.message;
  }
}
```


We should fix this so we can declare JSDoc descriptions in a single spot.

Back to Bug 1994819 Comment 0