mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-18 08:01:43 +00:00
25 lines
688 B
TypeScript
25 lines
688 B
TypeScript
export const catalog = [
|
|
{
|
|
title: "Popular",
|
|
filter:
|
|
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=favourites&season=any&format=any&status=any",
|
|
},
|
|
{
|
|
title: "Trending",
|
|
filter:
|
|
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=trending&season=any&format=any&status=any",
|
|
},
|
|
{
|
|
title: "Top Rated",
|
|
filter:
|
|
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=rating&season=any&format=any&status=any",
|
|
},
|
|
{
|
|
title: "Favourites",
|
|
filter:
|
|
"/api/anime/search?query=&page=1&perPage=35&year=any&sort=updated&season=any&format=any&status=any",
|
|
},
|
|
];
|
|
|
|
export const genres = [];
|