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