@tapjs/processinfo
    Preparing search index...

    Type Alias ExecArgs

    ExecArgs:
        | [
            command: string,
            callback?: (
                error: ExecException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            command: string,
            options: WithExternalID<{ encoding: "buffer" | null } & ExecOptions>,
            callback?: (
                error: ExecException | null,
                stdout: Buffer,
                stderr: Buffer,
            ) => void,
        ]
        | [
            command: string,
            options: WithExternalID<{ encoding: BufferEncoding } & ExecOptions>,
            callback?: (
                error: ExecException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            command: string,
            options: WithExternalID<{ encoding: BufferEncoding } & ExecOptions>,
            callback?: (
                error: ExecException | null,
                stdout: string | Buffer,
                stderr: string | Buffer,
            ) => void,
        ]
        | [
            command: string,
            options: WithExternalID<ExecOptions>,
            callback?: (
                error: ExecException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            command: string,
            options: | WithExternalID<ObjectEncodingOptions & ExecOptions>
            | undefined
            | null,
            callback?: (
                error: ExecException | null,
                stdout: string | Buffer,
                stderr: string | Buffer,
            ) => void,
        ]