Files

8 lines
227 B
TypeScript
Raw Permalink Normal View History

2025-10-11 10:47:07 +08:00
export type FileIntegrity = {
algorithm: 'SHA256';
hash: string;
blockSize: number;
blocks: string[];
};
export declare function getFileIntegrity(inputFileStream: NodeJS.ReadableStream): Promise<FileIntegrity>;