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