From 6d06e2bb1d2b2d02cf36762045604cfddfd1b7d2 Mon Sep 17 00:00:00 2001 From: Soham Ingle Date: Sun, 4 Jan 2026 21:50:34 +0530 Subject: [PATCH] fix(captcha): export types from the captcha module --- packages/better-auth/src/plugins/captcha/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/better-auth/src/plugins/captcha/index.ts b/packages/better-auth/src/plugins/captcha/index.ts index fc36bbc40b..66a6a77edf 100644 --- a/packages/better-auth/src/plugins/captcha/index.ts +++ b/packages/better-auth/src/plugins/captcha/index.ts @@ -6,6 +6,8 @@ import { EXTERNAL_ERROR_CODES, INTERNAL_ERROR_CODES } from "./error-codes"; import type { CaptchaOptions } from "./types"; import * as verifyHandlers from "./verify-handlers"; +export type * from "./types"; + export const captcha = (options: CaptchaOptions) => ({ id: "captcha",