Skip to content
Snippets Groups Projects
Unverified Commit f57888eb authored by Acid Chicken (硫酸鶏)'s avatar Acid Chicken (硫酸鶏) Committed by GitHub
Browse files

Update src/@types/hcaptcha.d.ts

parent b2c703c1
No related branches found
No related tags found
No related merge requests found
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>;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment