aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/newlightbox/RecommendationList/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/newlightbox/RecommendationList/utils.ts')
-rw-r--r--src/client/views/newlightbox/RecommendationList/utils.ts11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/client/views/newlightbox/RecommendationList/utils.ts b/src/client/views/newlightbox/RecommendationList/utils.ts
index cdfff3258..fbf8ac19f 100644
--- a/src/client/views/newlightbox/RecommendationList/utils.ts
+++ b/src/client/views/newlightbox/RecommendationList/utils.ts
@@ -1,9 +1,8 @@
-import { IRecommendation } from "../components";
+import { IRecommendation } from '../components';
export interface IRecommendationList {
- loading?: boolean,
- keywords?: string[],
- recs?: IRecommendation[]
- getRecs?: any
+ loading?: boolean;
+ keywords?: string[];
+ recs?: IRecommendation[];
+ getRecs?: any;
}
-