Files
2016-10-28 11:16:21 +01:00

8 lines
122 B
TypeScript

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