Files
altcha-lib/cjs/dist/index.d.ts
Daniel Regeci e3ca2a5941 0.1.2
2024-03-26 15:10:16 +01:00

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>;