import { PlayableInput } from '.'; export type ReplayInput = PlayableInput & { replay: ReplayChannel & { live: boolean; recording: boolean; channelMode: ChannelMode; channelA: ReplayChannelVariables; channelB: ReplayChannelVariables; }; }; export type ChannelMode = 'AB' | 'A' | 'B'; export type CameraNumber = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8; export type ReplayChannel = { eventBank: number; speed: number; timecode: Date; }; export type ReplayChannelVariables = ReplayChannel & { camera: CameraNumber; }; //# sourceMappingURL=replay.d.ts.map