Type alias CreateLearningElementSolutionModalProps

CreateLearningElementSolutionModalProps: {
    activeStep: number;
    currentTopic?: Topic;
    handleCloseCreateLearningElementSolutionModal: (() => void);
    learningElementsWithSolutions: {
        [key: number]: RemoteLearningElementWithSolution[];
    };
    open: boolean;
    selectedLearningElements: {
        [key: number]: RemoteLearningElementWithClassification[];
    };
    selectedSolutions: {
        [key: number]: Solution[];
    };
    setActiveStep: Dispatch<SetStateAction<number>>;
    setLearningElementsWithSolutions: Dispatch<SetStateAction<{
        [key: number]: RemoteLearningElementWithSolution[];
    }>>;
    setSelectedLearningElements: Dispatch<SetStateAction<{
        [key: number]: RemoteLearningElementWithClassification[];
    }>>;
}

Type declaration

Generated using TypeDoc