Created
August 5, 2019 21:33
-
-
Save Fleker/43e8e8628b237185287542cce9aac611 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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