atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
13 lines • 529 B
TypeScript
import { ExternalPortType, InternalPortType, MeAvailability, SourceAvailability } from '../enums';
export interface InputChannel {
readonly inputId: number;
longName: string;
shortName: string;
readonly areNamesDefault: boolean;
readonly externalPorts: Array<ExternalPortType> | null;
externalPortType: ExternalPortType;
readonly internalPortType: InternalPortType;
readonly sourceAvailability: SourceAvailability;
readonly meAvailability: MeAvailability;
}
//# sourceMappingURL=input.d.ts.map