* refactor: move web utils to packages * fix: build and lint errors * chore: update drag handle plugin * chore: update table cell type to fix build errors * fix: build errors * chore: sync few changes * fix: build errors * chore: minor fixes related to duplicate assets imports * fix: build errors * chore: minor changes
9 lines
284 B
TypeScript
9 lines
284 B
TypeScript
import { RefObject } from "react";
|
|
import type { IGanttBlock } from "@plane/types";
|
|
|
|
type LeftDependencyDraggableProps = {
|
|
block: IGanttBlock;
|
|
ganttContainerRef: RefObject<HTMLDivElement>;
|
|
};
|
|
|
|
export const LeftDependencyDraggable = (props: LeftDependencyDraggableProps) => <></>;
|