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

8 lines
232 B
TypeScript
Raw Normal View History

import { SelectorOption } from "@/components";
2021-03-25 14:22:43 +00:00
export const seriesTypeOptions: SelectorOption<string>[] = [
{ label: "Standard", value: "standard" },
{ label: "Anime", value: "anime" },
{ label: "Daily", value: "daily" },
];