index.ts 160 B

12345678
  1. import { exec, spawn } from './shell';
  2. export declare namespace NodeUtils {
  3. type Shell = {
  4. exec: typeof exec;
  5. spawn: typeof spawn;
  6. }
  7. }