UNPKG

eslint-config-agent

Version:

ESLint configuration package with TypeScript support

11 lines (9 loc) 204 B
/** * Valid: Readonly property without default value */ export class Entity { readonly id: string; // ✅ Valid: Readonly property without default constructor(id: string) { this.id = id; } }