mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-03-08 01:43:59 -05:00
29 lines
380 B
TypeScript
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;
|