Put "start at" at the top of the modal
[oweals/peertube.git] / client / src / app / videos / recommendations / recommendations.service.ts
1 import { Video } from '@app/shared/video/video.model'
2 import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
3 import { Observable } from 'rxjs'
4
5 export type UUID = string
6
7 export interface RecommendationService {
8   getRecommendations (recommendation: RecommendationInfo): Observable<Video[]>
9 }