import { WebConfiguration } from '@creedinteractive/onguard-models'; export class WebConfigurationService { config: T; constructor(config: T) { this.config = config; } logConfiguration() { console.log(this.config); } }