import * as Vue from "vue"; let component: Vue.Component = { props: ['track', 'episode'], computed: { IsTrackPlaying() { return this.track !== null && this.track !== undefined; }, IsEpisodePlaying() { return this.episode !== null && this.episode !== undefined; } }, template: `
` } export default component;