import { ContextType } from '@nestjs/common'; export type RecaptchaResponseProvider = (req: any) => string | Promise; export type RecaptchaRemoteIpProvider = (req: any) => string | Promise; export type ScoreValidator = number | ((score: number) => boolean); export type SkipIfValue = boolean | ((request: Req) => boolean | Promise); export type RecaptchaContextType = ContextType | 'graphql';