@tapjs/processinfo
    Preparing search index...

    Type Alias ExecFileArgs

    ExecFileArgs:
        | []
        | [
            options: | WithExternalID<ObjectEncodingOptions & ExecFileOptions>
            | undefined
            | null,
        ]
        | [args?: ReadonlyArray<string> | null]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options:
                | WithExternalID<ObjectEncodingOptions & ExecFileOptions>
                | undefined
                | null,
        ]
        | [
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            options: WithExternalID<ExecFileOptionsWithBufferEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: Buffer,
                stderr: Buffer,
            ) => void,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options: WithExternalID<ExecFileOptionsWithBufferEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: Buffer,
                stderr: Buffer,
            ) => void,
        ]
        | [
            options: WithExternalID<ExecFileOptionsWithStringEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options: WithExternalID<ExecFileOptionsWithStringEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            options: WithExternalID<ExecFileOptionsWithOtherEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: string | Buffer,
                stderr: string | Buffer,
            ) => void,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options: WithExternalID<ExecFileOptionsWithOtherEncoding>,
            callback: (
                error: ExecFileException | null,
                stdout: string | Buffer,
                stderr: string | Buffer,
            ) => void,
        ]
        | [
            options: WithExternalID<ExecFileOptions>,
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options: WithExternalID<ExecFileOptions>,
            callback: (
                error: ExecFileException | null,
                stdout: string,
                stderr: string,
            ) => void,
        ]
        | [
            options: | WithExternalID<ObjectEncodingOptions & ExecFileOptions>
            | undefined
            | null,
            callback:
                | (
                    (
                        error: ExecFileException | null,
                        stdout: string | Buffer,
                        stderr: string | Buffer,
                    ) => void
                )
                | undefined
                | null,
        ]
        | [
            args: ReadonlyArray<string>
            | undefined
            | null,
            options:
                | WithExternalID<ObjectEncodingOptions & ExecFileOptions>
                | undefined
                | null,
            callback:
                | (
                    (
                        error: ExecFileException | null,
                        stdout: string | Buffer,
                        stderr: string | Buffer,
                    ) => void
                )
                | undefined
                | null,
        ]