@atem-connection/camera-control
Version:
Library for ATEM Camera control using atem-connection.
20 lines • 591 B
TypeScript
export interface AtemCameraControlChanges {
readonly cameraId: number;
changes: string[];
events: AtemCameraControlEvents[];
unhandledMessages: Array<{
categoryId: number;
parameterId: number;
}>;
invalidMessages: Array<{
categoryId: number;
parameterId: number;
}>;
}
export declare enum AtemCameraControlEvents {
LensAutoIris = "lens.autoIris",
LensAutoFocus = "lens.autoFocus",
VideoAutoWhiteBalance = "video.autoWhiteBalance",
ColorResetToDefault = "color.resetToDefault"
}
//# sourceMappingURL=changes.d.ts.map