interface ProjectShareModalProps {
    onAddCollaborator: (email: string) => void;
    onClose: () => void;
    open: boolean;
    projectId: string;
}

Properties

onAddCollaborator: (email: string) => void
onClose: () => void
open: boolean
projectId: string