Skip to content

Instantly share code, notes, and snippets.

@Fleker
Created August 5, 2019 21:33
Show Gist options
  • Save Fleker/43e8e8628b237185287542cce9aac611 to your computer and use it in GitHub Desktop.
Save Fleker/43e8e8628b237185287542cce9aac611 to your computer and use it in GitHub Desktop.
function generateMediaResponse(track: TabletopAudioTrack): MediaObject {
return new MediaObject({
name: track.track_title,
url: track.link,
description: track.flavor_text,
image: new Image({
url: track.large_image,
alt: `Track art for ${track.track_title!}`
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment