open-wc / custom-elements-manifest-deprecated

Custom Elements Manifest is a file format that describes custom elements in your project.
8 stars 4 forks source link

[core] Support `@prop` jsdoc #2

Closed thepassle closed 3 years ago

thepassle commented 3 years ago

Support @prop and @property jsdoc, e.g.:

/**
 * @prop {boolean} bar - description
 * @property {boolean} bar - description
 */
class Foo extends HTMLElement {}