Scte35SpliceCommand type
Signature:
export type Scte35SpliceCommand = {
type: "null";
} | {
type: "schedule";
value: Scte35ScheduleCommand;
} | {
type: "insert";
value: Scte35InsertCommand;
} | {
type: "timeSignal";
value: Scte35TimeSignalCommand;
} | {
type: "bandwidthReservation";
} | {
type: "privateCommand";
value: Scte35PrivateCommand;
} | {
type: "reserved";
value: Scte35ReservedCommand;
};