Kyoo/api/src/models/utils/genres.ts
2025-01-10 12:16:31 +01:00

29 lines
380 B
TypeScript

import { t } from "elysia";
export const Genre = t.UnionEnum([
"action",
"adventure",
"animation",
"comedy",
"crime",
"documentary",
"drama",
"family",
"fantasy",
"history",
"horror",
"music",
"mystery",
"romance",
"science-fiction",
"thriller",
"war",
"western",
"kids",
"reality",
"politics",
"soap",
"talk",
]);
export type Genre = typeof Genre.static;