mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 08:09:33 +01:00
18 lines
501 B
TypeScript
18 lines
501 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
|
|
import { TEstimateTypeErrorObject } from "@plane/types";
|
|
|
|
type TEstimatePointDelete = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
estimateId: string;
|
|
estimatePointId: string;
|
|
callback: () => void;
|
|
estimatePointError?: TEstimateTypeErrorObject | undefined;
|
|
handleEstimatePointError?: (newValue: string, message: string | undefined, mode?: "add" | "delete") => void;
|
|
};
|
|
|
|
export const EstimatePointDelete: FC<TEstimatePointDelete> = () => <></>;
|