This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/utils/interfaces/playlist.ts
2021-10-27 01:48:30 +02:00

10 lines
150 B
TypeScript

import {Video} from "./video";
export interface Playlist
{
_id: string,
user: any,
name: string,
count: number
videos: Video[]
}