mirror of
https://github.com/altcha-org/altcha-lib.git
synced 2026-01-25 04:18:21 +00:00
4 lines
262 B
TypeScript
4 lines
262 B
TypeScript
import type { Challenge, ChallengeOptions, Payload } from './types.js';
|
|
export declare function createChallenge(options: ChallengeOptions): Promise<Challenge>;
|
|
export declare function verifySolution(payload: string | Payload, hmacKey: string): Promise<boolean>;
|