init commit
This commit is contained in:
11
remotion/node_modules/@remotion/studio/dist/helpers/use-asset-drag-events.d.ts
generated
vendored
Normal file
11
remotion/node_modules/@remotion/studio/dist/helpers/use-asset-drag-events.d.ts
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user