Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 7x 7x | import { ISortingOption } from '@/interfaces';
export const sortingOptions: ISortingOption[] = [
{ id: 1, key: 'popularity.desc', name: 'Popularity Descending' },
{ id: 2, key: 'popularity.asc', name: 'Popularity Ascending' },
{ id: 3, key: 'vote_average.desc', name: 'Rating Descending' },
{ id: 4, key: 'vote_average.asc', name: 'Rating Ascending' },
{ id: 5, key: 'primary_release_date.desc', name: 'Release Date Descending' },
{ id: 6, key: 'primary_release_date.asc', name: 'Release Date Ascending' },
];
export const languages = [
{
iso_639_1: "en",
english_name: "English",
name: "English",
flag: "us",
},
{
iso_639_1: "fr",
english_name: "French",
name: "Français",
flag: "fr",
},
{
iso_639_1: "ar",
english_name: "Arabic",
name: "العربية",
flag: "sa",
},
]; |