Referencing the current class type fluently.
add(n: number): this
return this
class Calc { val = 0; add(n: number): this { this.val += n; return this; } }