clapper / src /services /renderer /getDefaultBufferedSegments.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add linter and prettifier
c1f12bf
raw
history blame
485 Bytes
import { BufferedSegments } from '@aitube/clapper-services'
export function getDefaultBufferedSegments(): BufferedSegments {
const result: BufferedSegments = {
activeSegmentsCacheKey: '',
activeSegments: [],
activeVideoSegment: undefined,
activeStoryboardSegment: undefined,
activeAudioSegments: [],
upcomingSegmentsCacheKey: '',
upcomingSegments: [],
upcomingVideoSegment: undefined,
upcomingStoryboardSegment: undefined,
}
return result
}