Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

8 lignes
172 B

  1. import * as childProcess from 'child_process';
  2. export const spawn = (
  3. cwd: string,
  4. command: string,
  5. args: string[],
  6. ) => childProcess.spawn(command, args, { cwd });