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

5 lines
102 B
TypeScript
Raw Normal View History

2025-09-11 23:47:05 +08:00
export interface ICaptchaAddon{
onValidate(data?:any):Promise<any>;
getCaptcha():Promise<any>;
2025-09-11 23:47:05 +08:00
}