UNPKG

aes70

Version:

A controller library for the AES70 protocol.

14 lines (12 loc) 440 B
import { RemoteDevice } from '../remote_device.js'; import { OcaWorker } from './OcaWorker.js'; /** * Abstract base class for all actuators (i.e. classes) that affect the routing * and/or content of the audio signal, or provide ancillary control functions * such as power). * @extends OcaWorker * @class OcaActuator */ export declare class OcaActuator extends OcaWorker { constructor(objectNumber: number, device: RemoteDevice); }