15 lines
404 B
TypeScript
15 lines
404 B
TypeScript
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>;
|