@saran-ign/react-image-annotate
Version:
An Image Annotate Library for React
10 lines (9 loc) • 541 B
TypeScript
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;