Files
story-studio/remotion/node_modules/@remotion/studio/dist/helpers/use-asset-drag-events.d.ts
2026-02-21 10:33:18 +01:00

12 lines
385 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;