misskey/packages/backend/src/@types/hcaptcha.d.ts
2022-02-03 21:20:25 +09:00

12 lines
258 B
TypeScript

declare module 'hcaptcha' {
interface IVerifyResponse {
success: boolean;
challenge_ts: string;
hostname: string;
credit?: boolean;
'error-codes'?: unknown[];
}
export function verify(secret: string, token: string): Promise<IVerifyResponse>;
}