better-auth
Version:
The most comprehensive authentication framework for TypeScript.
14 lines (13 loc) • 439 B
text/typescript
import { CaptchaOptions } from "./types.mjs";
import * as _better_auth_core6 from "@better-auth/core";
//#region src/plugins/captcha/index.d.ts
declare const captcha: (options: CaptchaOptions) => {
id: "captcha";
onRequest: (request: Request, ctx: _better_auth_core6.AuthContext) => Promise<{
response: Response;
} | undefined>;
options: CaptchaOptions;
};
//#endregion
export { captcha };
//# sourceMappingURL=index.d.mts.map