https://github.com/angular/angular
Raw File
Tip revision: 544aedee6f9f33323270b8fa97479a790895240e authored by Andrew Kushnir on 25 April 2024, 15:21:31 UTC
release: cut the v17.3.6 release
Tip revision: 544aede
lib1.ts
import {Injectable, NgModule} from '@angular/core';

@NgModule({})
export class Lib1Module {}

@Injectable({providedIn: Lib1Module})
export class Service {
  static instance = 0;
  readonly instance = Service.instance++;
}
back to top