Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 412 Bytes

no-parameter-properties.md

File metadata and controls

13 lines (7 loc) · 412 Bytes

Pattern: Parameter property in class constructor

Issue: -

Description

Disallows parameter properties in class constructors.

Rationale: Parameter properties can be confusing to those new to TS as they are less explicit than other ways of declaring and initializing class members.

Further Reading