Files
aza/APP/nexus-remote/node_modules/@electron/rebuild/lib/arch.d.ts

17 lines
451 B
TypeScript
Raw Normal View History

2026-03-25 14:14:07 +01:00
/**
* Runs the `uname` command and returns the trimmed output.
*
* Copied from `@electron/get`.
*/
export declare function uname(): string;
export declare type ConfigVariables = {
arm_version?: string;
};
/**
* Generates an architecture name that would be used in an Electron or Node.js
* download file name.
*
* Copied from `@electron/get`.
*/
export declare function getNodeArch(arch: string, configVariables: ConfigVariables): string;