Interface NodePyATVRequestOptions

interface NodePyATVRequestOptions {
    allowMultipleResponses?: boolean;
    atvremotePath?: string;
    atvscriptPath?: string;
    debug?: true | (msg: string) => void;
    noColors?: true;
    spawn?: (
        command: string,
        args: string[],
        options: SpawnOptions,
    ) => FakeChildProcess | ChildProcess;
}

Hierarchy (View Summary)

Properties

allowMultipleResponses?: boolean
atvremotePath?: string
atvscriptPath?: string
debug?: true | (msg: string) => void
noColors?: true
spawn?: (
    command: string,
    args: string[],
    options: SpawnOptions,
) => FakeChildProcess | ChildProcess