@cloudgpt/timeline-editor
Version:
Enhanced React timeline editor with advanced features including theme system, max duration controls, cursor customization, handle styling, and media support for video editing applications.
8 lines (7 loc) • 429 B
TypeScript
import { DragEvent, ResizeEvent } from '@interactjs/types/index';
export declare function useAutoScroll(target: React.MutableRefObject<HTMLDivElement>): {
initAutoScroll: () => void;
dealDragAutoScroll: (e: DragEvent, deltaScroll?: (delta: number) => void) => boolean;
dealResizeAutoScroll: (e: ResizeEvent, dir: "left" | "right", deltaScroll?: (delta: number) => void) => boolean;
stopAutoScroll: () => void;
};