JSTSTS SyntaxTypeBase TypeTyped ClassespublicOn this pagepublic ↔ (default) Modifier for Methods, callable anywherecan be used to shorten assignment:class Color { constructor(color: string) { this.color = color; } }Can be shortened to... constructor(public color: string) { ...class Color { constructor(public color: string) {} }References