coffeedoc / codo

CoffeeScript API documentation generator. It's like YARD but for CoffeeScript!
Other
625 stars 92 forks source link

class properties #247

Closed jneuendorf closed 7 years ago

jneuendorf commented 7 years ago

Hi,

it'd be nice to have the ability to have class properties show up in the generated docs. E.g.

class A
    # @property [Number] some description
    @classProp: 1
    # @property [Array<String>] some description
    @classProp2 = ["elem1"]

Or did I overlook this feature? ^^

inossidabile commented 7 years ago

Those are not properties. Those are attributes.