Skip to content

Instantly share code, notes, and snippets.

@Sampath-Lokuge
Last active June 19, 2018 12:39
Show Gist options
  • Save Sampath-Lokuge/d3248cd1cfba3a880bc2189ad9043296 to your computer and use it in GitHub Desktop.
Save Sampath-Lokuge/d3248cd1cfba3a880bc2189ad9043296 to your computer and use it in GitHub Desktop.
PlayList.ts
import { MediaItem } from "./media-item";
export interface PlayList {
id: number;
text: string;
imageUrl: string;
mediaItems: MediaItem[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment