@bbc/timeline-state-resolver-types
Version:
Have timeline, control stuff
15 lines • 560 B
TypeScript
import { DeviceType } from '..';
export type TimelineContentTCPSendAny = TimelineContentTCPRequest;
export interface TimelineContentTCPSendBase {
deviceType: DeviceType.TCPSEND;
}
export type TimelineContentTCPRequest = TimelineContentTCPSendBase & TcpSendCommandContent;
export interface TcpSendCommandContent {
message: string;
temporalPriority?: number;
/**
* Commands in the same queue will be sent in order (will wait for the previous to finish before sending next
*/
queueId?: string;
}
//# sourceMappingURL=tcpSend.d.ts.map