mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-14 02:02:42 +08:00
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>;
|