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

13 lines
246 B
TypeScript

import { SelectorOption } from "@/components";
export const antiCaptchaOption: SelectorOption<string>[] = [
{
label: "Anti-Captcha",
value: "anti-captcha",
},
{
label: "Death by Captcha",
value: "death-by-captcha",
},
];