Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112
  1. /**
  2. * Attempt to read the CPU architecture from a binary file.
  3. *
  4. * On Windows, only valid PE files are supported due to the 'file' command not
  5. * existing.
  6. * On Mac/Linux, all files are supported via the 'file' command.
  7. *
  8. * @param filePath
  9. */
  10. export function readBinaryFileArch(
  11. filePath: string
  12. ): Promise<NodeJS.Process['arch'] | null>;