NeahNew/node_modules/@electron/asar/lib/integrity.d.ts
2025-05-06 22:43:27 +02:00

8 lines
201 B
TypeScript

export type FileIntegrity = {
algorithm: 'SHA256';
hash: string;
blockSize: number;
blocks: string[];
};
export declare function getFileIntegrity(path: string): Promise<FileIntegrity>;