Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234
  1. export function exec(cmd: string,
  2. options?: ((error?: Error, stdout?: string | Buffer, stderr?: string | Buffer) => void)
  3. | { name?: string, icns?: string, env?: { [key: string]: string } },
  4. callback?: (error?: Error, stdout?: string | Buffer, stderr?: string | Buffer) => void): void;