mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-24 02:30:13 +00:00
8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
export class Counter {
|
|
public currentCount = 0;
|
|
|
|
public incrementCounter() {
|
|
this.currentCount++;
|
|
}
|
|
}
|