mirror of
https://github.com/makeplane/plane.git
synced 2025-12-23 23:29:37 +01:00
20 lines
498 B
TypeScript
20 lines
498 B
TypeScript
"use client";
|
|
import React, { FC } from "react";
|
|
import { 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 const CreateUpdateEpicModal: FC<EpicModalProps> = (props) => <></>;
|