mirror of
https://github.com/certd/certd.git
synced 2026-04-20 01:40:51 +08:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
export type CaptchaRequest = {
|
|
remoteIp: string,
|
|
}
|
|
export interface ICaptchaAddon{
|
|
onValidate(data?:any,req?:CaptchaRequest):Promise<any>;
|
|
getCaptcha():Promise<any>;
|
|
}
|