https://github.com/angular/angular
Raw File
Tip revision: 884f743baa667ee5b62d67c3fb9dabab1b03d2d8 authored by Joey Perrott on 09 December 2020, 19:40:17 UTC
release: cut the v11.0.4 release (#40051)
Tip revision: 884f743
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