UNPKG

@saran-ign/react-image-annotate

Version:
10 lines (9 loc) 541 B
import { MainLayoutVideoAnnotationState } from '../MainLayout/types.ts'; interface KeyframesSelectorSidebarBoxProps { currentVideoTime?: number; keyframes: MainLayoutVideoAnnotationState["keyframes"]; onChangeVideoTime: (time: number) => void; onDeleteKeyframe: (time: number) => void; } declare const KeyframesSelectorSidebarBox: ({ currentVideoTime, keyframes, onChangeVideoTime, onDeleteKeyframe, }: KeyframesSelectorSidebarBoxProps) => import("react/jsx-runtime").JSX.Element; export default KeyframesSelectorSidebarBox;