aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommendations.service.ts
blob: 114a808b5197c193a70b00d4b0534fcc650c9396 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { Video } from '@app/shared/video/video.model'
import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
import { Observable } from 'rxjs'

export type UUID = string

export interface RecommendationService {
  getRecommendations (recommendation: RecommendationInfo): Observable<Video[]>
}