Return all properties created in the constructor (via constructor(public title: string))
If a non-property parameter is in the constructor, the type is given instead, e.g. constructor(public title: string, anotherOne:number) => [TypeProperty, TypeNumber]
Return all properties created in the constructor (via
constructor(public title: string)
)If a non-property parameter is in the constructor, the type is given instead, e.g.
constructor(public title: string, anotherOne:number)
=> [TypeProperty, TypeNumber]