thedesk/app/node_modules/app-builder-lib/out/asar/integrity.d.ts

15 lines
404 B
TypeScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
export interface AsarIntegrityOptions {
/**
* Allows external asar files.
*
* @default false
*/
readonly externalAllowed?: boolean;
}
export interface AsarIntegrity extends AsarIntegrityOptions {
checksums: {
[key: string]: string;
};
}
export declare function computeData(resourcesPath: string, options?: AsarIntegrityOptions | null): Promise<AsarIntegrity>;