import { Component, OnInit, Input } from '@angular/core'; import { KstConfig } from '../../config/chat.config'; @Component({ // tslint:disable-next-line: component-selector selector: 'kst-file-audio', template:` ` }) export class FileAudioComponent implements OnInit { @Input() url: string; @Input() inChatServer = false; constructor() { } ngOnInit() { if (this.inChatServer) { this.url = KstConfig.url + this.url; } } }