UNPKG

404 BTypeScriptView Raw
1export interface AsarIntegrityOptions {
2 /**
3 * Allows external asar files.
4 *
5 * @default false
6 */
7 readonly externalAllowed?: boolean;
8}
9export interface AsarIntegrity extends AsarIntegrityOptions {
10 checksums: {
11 [key: string]: string;
12 };
13}
14export declare function computeData(resourcesPath: string, options?: AsarIntegrityOptions | null): Promise<AsarIntegrity>;