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 full)

Properties

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