UNPKG

@silvermine/eslint-config

Version:

JS Code Standards for all SilverMine projects - eslint enforcement

12 lines (9 loc) 214 B
export class SmallClass { private readonly _helloThere: string; public constructor(hello: string) { this._helloThere = hello; } public sayHello(): string { return this._helloThere; } }