27 lines
676 B
TypeScript
27 lines
676 B
TypeScript
/**
|
|
* Copyright (c) 2023-present Plane Software, Inc. and contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
* See the LICENSE file for details.
|
|
*/
|
|
|
|
import type { FC } from "react";
|
|
import React from "react";
|
|
import type { TIssue } from "@plane/types";
|
|
|
|
export interface EpicModalProps {
|
|
data?: Partial<TIssue>;
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
beforeFormSubmit?: () => Promise<void>;
|
|
onSubmit?: (res: TIssue) => Promise<void>;
|
|
fetchIssueDetails?: boolean;
|
|
primaryButtonText?: {
|
|
default: string;
|
|
loading: string;
|
|
};
|
|
isProjectSelectionDisabled?: boolean;
|
|
}
|
|
|
|
export function CreateUpdateEpicModal(props: EpicModalProps) {
|
|
return <></>;
|
|
}
|