Files
certd/packages/ui/certd-server/src/plugins/plugin-captcha/api.ts
T

8 lines
175 B
TypeScript
Raw Normal View History

export type CaptchaRequest = {
remoteIp: string,
}
2025-09-11 23:47:05 +08:00
export interface ICaptchaAddon{
onValidate(data?:any,req?:CaptchaRequest):Promise<any>;
getCaptcha():Promise<any>;
2025-09-11 23:47:05 +08:00
}