UNPKG

tslint-clean-code

Version:
23 lines (19 loc) 325 B
class SampleCatch3 { // class variables private catch; } // class properties class SampleCatch4 { private var; set catch(value) {} get catch() { return this.var; } } class SampleCatch5 { catch() {} // class methods } // interface declarations interface SampleCatch6 { catch: any; }