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

export type UUID = string

export interface RecommendationService {
  getRecommendations (uuid: UUID): Observable<Video[]>
}