blob: a547e289d6aace7c14f2d9f4235047aa8974364e (
plain) (
blame)
1
2
3
4
5
6
7
|
import { Video } from '@app/shared/video/video.model'
import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
import { Observable } from 'rxjs'
export interface RecommendationService {
getRecommendations (recommendation: RecommendationInfo): Observable<Video[]>
}
|