@joergmittaglawo/dmvconfig
Version:
DMV Configuration scripts for Lawo V__matrix Distributed Multiviewers.
22 lines • 667 B
TypeScript
/**
* Runs the PIP Configuration
* @packageDocumentation
*
* @version 0.0.0-alpha.1
* @date 2020-10-10
* @author Mittag, Jörg (Lawo) <joerg.mittag@lawo.com>
* @license SPDX-License-Identifier: MIT
*
* @changelog 2020-10-10 JMi Make unnecessary members optional
*/
import type { VMatrix } from 'vapi';
import type { DMVConfig } from '../conf';
/**
* Runs the PIP Configuration
*
* @param config The DMV Configuration
* @param master An open VMatrix connection to the cluster master
*/
declare function runPipConfig({ heads, pip: { tallyMode } }: DMVConfig, master: VMatrix): Promise<void>;
export default runPipConfig;
//# sourceMappingURL=pip.d.ts.map