mirror of
https://github.com/certd/certd.git
synced 2026-04-22 10:57:25 +08:00
5 lines
102 B
TypeScript
5 lines
102 B
TypeScript
export interface ICaptchaAddon{
|
|
onValidate(data?:any):Promise<any>;
|
|
getCaptcha():Promise<any>;
|
|
}
|