@remotion/studio
Version:
APIs for interacting with the Remotion Studio
12 lines (11 loc) • 384 B
TypeScript
declare function useAssetDragEvents({ name, parentFolder, dropLocation, setDropLocation }: {
name: string | null;
parentFolder: string | null;
dropLocation: string | null;
setDropLocation: React.Dispatch<React.SetStateAction<string | null>>;
}): {
isDropDiv: boolean;
onDragEnter: () => void;
onDragLeave: () => void;
};
export default useAssetDragEvents;