aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/pages/Settings/Providers/options.ts
blob: 63227ca761b3e37818c387e01f16d4dc40e35032 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { SelectorOption } from "@/components";

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