UNPKG

eslint-config-agent

Version:

ESLint configuration package with TypeScript support

15 lines (12 loc) 241 B
/** * Valid: Class property initialized through method */ export class Counter { value: number; constructor() { this.reset(); // ✅ Valid: Property initialized through method call } reset(): void { this.value = 0; } }