https://github.com/angular/angular
Raw File
Tip revision: 049e4ab59687f5988c2b2091e067aacea46b6a42 authored by Dylan Hunn on 06 December 2023, 18:10:45 UTC
release: cut the v17.0.6 release
Tip revision: 049e4ab
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