export class Counter { public currentCount = 0; public incrementCounter() { this.currentCount++; } }