Interface NodePyATVInstanceOptions

interface NodePyATVInstanceOptions {
    atvremotePath?: string;
    atvscriptPath?: string;
    debug?: true | ((msg) => void);
    noColors?: true;
    spawn?: ((command, args, options) => FakeChildProcess | ChildProcess);
}

Hierarchy (view full)

Properties

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

Type declaration

    • (msg): void
    • Parameters

      • msg: string

      Returns void

noColors?: true
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