interface ProjectAccessModalProps {
    id: string;
    onChangeType: (id: string, newType: ProjectAccessType) => Promise<void>;
    onClose: () => void;
    open: boolean;
    type: ProjectAccessType;
}

Properties

id: string
onChangeType: (id: string, newType: ProjectAccessType) => Promise<void>
onClose: () => void
open: boolean