commencement de la 'page search'

This commit is contained in:
MiharyR 2021-10-27 01:48:30 +02:00
parent 5f4ecfc7b3
commit 58d80d1a6b
47 changed files with 889 additions and 84 deletions

View file

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

View file

@ -0,0 +1,8 @@
export interface Video
{
_id: string,
url: string,
title: string,
description: string,
views: number
}