11 lines
218 B
TypeScript
Raw Normal View History

import {Injectable, NgModule} from '@angular/core';
@NgModule({})
export class Lib1Module {}
@Injectable({scope: Lib1Module})
export class Service {
static instance = 0;
readonly instance = Service.instance++;
}