UNPKG

99 BPlain TextView Raw
1export class IdGenerator {
2 private id = 0;
3 public next(): number {
4 return this.id++;
5 }
6}