bazarr/frontend/src/pages/Settings/options.ts

8 lines
232 B
TypeScript

import { SelectorOption } from "@/components";
export const seriesTypeOptions: SelectorOption<string>[] = [
{ label: "Standard", value: "standard" },
{ label: "Anime", value: "anime" },
{ label: "Daily", value: "daily" },
];