Interface NodePyATVFindAndInstanceOptions

interface NodePyATVFindAndInstanceOptions {
    airplayCredentials?: string;
    atvremotePath?: string;
    atvscriptPath?: string;
    companionCredentials?: string;
    debug?: true | ((msg) => void);
    dmapCredentials?: string;
    host?: string;
    hosts?: string[];
    id?: string;
    mrpCredentials?: string;
    noColors?: true;
    protocol?: NodePyATVProtocol;
    raopCredentials?: string;
    spawn?: ((command, args, options) => FakeChildProcess | ChildProcess);
}

Hierarchy (view full)

Properties

airplayCredentials?: string
atvremotePath?: string
atvscriptPath?: string
companionCredentials?: string
debug?: true | ((msg) => void)

Type declaration

    • (msg): void
    • Parameters

      • msg: string

      Returns void

dmapCredentials?: string
host?: string
hosts?: string[]
id?: string
mrpCredentials?: string
noColors?: true
raopCredentials?: string
spawn?: ((command, args, options) => FakeChildProcess | ChildProcess)

Type declaration

    • (command, args, options): FakeChildProcess | ChildProcess
    • Parameters

      • command: string
      • args: string[]
      • options: SpawnOptions

      Returns FakeChildProcess | ChildProcess

Generated using TypeDoc