clapper / src /services /editors /segment-editor /getDefaultSegmentEditorState.ts
jbilcke-hf's picture
jbilcke-hf HF staff
migrate to TimelineSegment
083ce88
raw
history blame
No virus
249 Bytes
import { SegmentEditorState } from "@aitube/clapper-services"
export function getDefaultSegmentEditorState(): SegmentEditorState {
const state: SegmentEditorState = {
current: undefined,
version: 0,
history: [],
}
return state
}