UNPKG

tslint-clean-code

Version:
23 lines (19 loc) 316 B
class SampleThis3 { // class variables private this; } // class properties class SampleThis4 { private var; set this(value) {} get this() { return this.var; } } class SampleThis5 { this() {} // class methods } // interface declarations interface SampleThis6 { this: any; }