UNPKG

@sourcefield/lsif-typescript

Version:
11 lines (10 loc) 175 B
export class Counter { private n = 0; public next(): number { this.n++; return this.n; } public get(): number { return this.n; } }