⪼ Made with 💜 by realpolyglot.com
tony-cli
export type MediaUrl = {
name: "YouTube" | "SoundCloud" | "Spotify";
format: string;
}
export type AnthemAttributes = {
title: string;
artist: string;
featuring: string[];
mediaUrls: MediaUrl[]
album: string;
year: string;
}