https://github.com/angular/angular
Raw File
Tip revision: 4f7aceacda243051b2dedb638a2c1eca740c97a4 authored by Dylan Hunn on 10 August 2022, 17:49:15 UTC
release: cut the v14.2.0-next.1 release
Tip revision: 4f7acea
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