https://github.com/angular/angular
Raw File
Tip revision: 174997150f814f2a9addd41e64b78b2f27e7b26a authored by Andrew Kushnir on 01 March 2023, 18:45:33 UTC
release: cut the v15.2.1 release
Tip revision: 1749971
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