Update src/@types/hcaptcha.d.ts

This commit is contained in:
Acid Chicken (硫酸鶏) 2020-05-02 10:50:29 +09:00 committed by GitHub
parent b2c703c173
commit f57888eb4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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