commencement de la 'page search'
This commit is contained in:
parent
5f4ecfc7b3
commit
58d80d1a6b
47 changed files with 889 additions and 84 deletions
10
src/app/utils/interfaces/playlist.ts
Normal file
10
src/app/utils/interfaces/playlist.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import {Video} from "./video";
|
||||
|
||||
export interface Playlist
|
||||
{
|
||||
_id: string,
|
||||
user: any,
|
||||
name: string,
|
||||
count: number
|
||||
videos: Video[]
|
||||
}
|
||||
8
src/app/utils/interfaces/video.ts
Normal file
8
src/app/utils/interfaces/video.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export interface Video
|
||||
{
|
||||
_id: string,
|
||||
url: string,
|
||||
title: string,
|
||||
description: string,
|
||||
views: number
|
||||
}
|
||||
Reference in a new issue