Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.d.ts 348B

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>;