type alias ExecFileException
          
Usage in Deno
import { type ExecFileException } from "node:child_process";
Omit<ExecException, "code">
 & Omit<ErrnoException, "code">
 & { code?: string
 | number
 | undefined
 | null;  }
      
    import { type ExecFileException } from "node:child_process";
Omit<ExecException, "code">
 & Omit<ErrnoException, "code">
 & { code?: string
 | number
 | undefined
 | null;  }