import {InjectionToken} from '@angular/core'; export const REST_CONFIG_TOKEN = new InjectionToken('RestConfig'); export interface RestConfigService { apiBaseUrl(): string; }