ad-on-is / adonis-autoswagger

Auto-Generate swagger docs for AdonisJS
MIT License
129 stars 41 forks source link

fix "declare" parser #88

Closed pdipax closed 6 months ago

pdipax commented 6 months ago

made fix to be able to declare the column in the model also on the same row

Before: @column() declare id: number Doesn't work

Now: @column() declare id: number

or

@column() declare id: number

it works the same way