aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/RecommendationList/utils.ts
blob: fbf8ac19ff24fc9c2ade32816789e89abccb9e1e (plain)
1
2
3
4
5
6
7
8
import { IRecommendation } from '../components';

export interface IRecommendationList {
    loading?: boolean;
    keywords?: string[];
    recs?: IRecommendation[];
    getRecs?: any;
}