436a9631fc
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
export type FileIntegrity = {
|
|
algorithm: 'SHA256';
|
|
hash: string;
|
|
blockSize: number;
|
|
blocks: string[];
|
|
};
|
|
export declare function getFileIntegrity(inputFileStream: NodeJS.ReadableStream): Promise<FileIntegrity>;
|