https://github.com/angular/angular
Raw File
Tip revision: 5db7b4c354d812938aa247a18154d6a61948547c authored by atscott on 14 October 2020, 20:33:19 UTC
release: cut the v10.1.6 release
Tip revision: 5db7b4c
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