import {EnvironmentServiceInterface, Environment} from '@vendasta/environment-service'; import {Injectable} from '@angular/core'; @Injectable() export class EnvironmentService implements EnvironmentServiceInterface { getEnvironment(): Environment { return Environment.TEST; } }