UNPKG

eslint-config-alloy

Version:
16 lines (15 loc) 266 B
class Foo2 { private static foo = 'foo'; public static getFoo() { return Foo2.foo; } public constructor() {} protected bar = 'bar'; public getBar() {} public get baz() { return 'baz'; } public set baz(value) { console.log(value); } }