mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 15:19:37 +01:00
20 lines
634 B
TypeScript
20 lines
634 B
TypeScript
"use client";
|
|
|
|
import { FC } from "react";
|
|
|
|
import { TEstimatePointsObject, TEstimateSystemKeys, TEstimateTypeErrorObject } from "@plane/types";
|
|
|
|
export type TEstimatePointDelete = {
|
|
workspaceSlug: string;
|
|
projectId: string;
|
|
estimateId: string;
|
|
estimatePointId: string;
|
|
estimatePoints: TEstimatePointsObject[];
|
|
callback: () => void;
|
|
estimatePointError?: TEstimateTypeErrorObject | undefined;
|
|
handleEstimatePointError?: (newValue: string, message: string | undefined, mode?: "add" | "delete") => void;
|
|
estimateSystem: TEstimateSystemKeys;
|
|
};
|
|
|
|
export const EstimatePointDelete: FC<TEstimatePointDelete> = () => <></>;
|