https://github.com/angular/angular
Raw File
Tip revision: edc45d5b6fdcc9559ba00540476f8c247a3d7cb5 authored by Dylan Hunn on 28 February 2024, 00:16:00 UTC
release: cut the v17.2.3 release
Tip revision: edc45d5
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