import { Injectable } from '@angular/core'; @Injectable({ providedIn: 'root' }) export class JaxLoginService { constructor() { } testFunction(): string { return 'test'; } }