2024-06-18 16:14:24 +05:30
|
|
|
"use client";
|
|
|
|
|
|
2025-10-14 16:45:07 +05:30
|
|
|
import type { FC } from "react";
|
2024-06-18 16:14:24 +05:30
|
|
|
|
2025-10-14 16:45:07 +05:30
|
|
|
import type { TEstimatePointsObject, TEstimateSystemKeys, TEstimateTypeErrorObject } from "@plane/types";
|
2024-06-18 16:14:24 +05:30
|
|
|
|
2025-04-04 16:59:12 +05:30
|
|
|
export type TEstimatePointDelete = {
|
2024-06-18 16:14:24 +05:30
|
|
|
workspaceSlug: string;
|
|
|
|
|
projectId: string;
|
|
|
|
|
estimateId: string;
|
|
|
|
|
estimatePointId: string;
|
2025-04-04 16:59:12 +05:30
|
|
|
estimatePoints: TEstimatePointsObject[];
|
2024-06-18 16:14:24 +05:30
|
|
|
callback: () => void;
|
|
|
|
|
estimatePointError?: TEstimateTypeErrorObject | undefined;
|
|
|
|
|
handleEstimatePointError?: (newValue: string, message: string | undefined, mode?: "add" | "delete") => void;
|
2025-04-04 16:59:12 +05:30
|
|
|
estimateSystem: TEstimateSystemKeys;
|
2024-06-18 16:14:24 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const EstimatePointDelete: FC<TEstimatePointDelete> = () => <></>;
|