mirror of
https://github.com/ryanwtf7/hianime-api.git
synced 2026-04-17 13:31:44 +00:00
49 lines
674 B
TypeScript
49 lines
674 B
TypeScript
const allGenres: string[] = [
|
|
'action',
|
|
'adventure',
|
|
'cars',
|
|
'comedy',
|
|
'dementia',
|
|
'demons',
|
|
'drama',
|
|
'ecchi',
|
|
'fantasy',
|
|
'game',
|
|
'harem',
|
|
'historical',
|
|
'horror',
|
|
'isekai',
|
|
'josei',
|
|
'kids',
|
|
'magic',
|
|
'martial arts',
|
|
'mecha',
|
|
'military',
|
|
'music',
|
|
'mystery',
|
|
'parody',
|
|
'police',
|
|
'psychological',
|
|
'romance',
|
|
'samurai',
|
|
'school',
|
|
'sci-fi',
|
|
'seinen',
|
|
'shoujo',
|
|
'shoujo ai',
|
|
'shounen',
|
|
'shounen ai',
|
|
'slice of life',
|
|
'space',
|
|
'sports',
|
|
'super power',
|
|
'supernatural',
|
|
'thriller',
|
|
'vampire',
|
|
];
|
|
const allGenresController = (): string[] => {
|
|
return allGenres;
|
|
};
|
|
|
|
export default allGenresController;
|