UNPKG

@vitaeflow/sdk-js

Version:

Official JavaScript/TypeScript SDK for VitaeFlow - Embed and extract structured resume data from PDFs

13 lines 402 B
/** * Checksum utilities for data integrity */ /** * Create a checksum using a simple hash algorithm * Compatible with both Node.js and browser environments */ export declare function createChecksum(data: string): string; /** * Verify a checksum matches the expected value */ export declare function verifyChecksum(data: string, expected: string): boolean; //# sourceMappingURL=checksum.d.ts.map