CreateTopicModalProps: {
    activeStep: number;
    currentTopicLmsId: number;
    handleCloseCreateTopicModal: (() => void);
    openCreateTopicModal?: boolean;
    selectedLearningElements: {
        [key: number]: RemoteLearningElement[];
    };
    selectedLearningElementsClassification: {
        [key: number]: RemoteLearningElementWithClassification[];
    };
    setActiveStep: Dispatch<SetStateAction<number>>;
    setSelectedLearningElements: Dispatch<SetStateAction<{
        [key: number]: RemoteLearningElement[];
    }>>;
    setSelectedLearningElementsClassification: Dispatch<SetStateAction<{
        [key: number]: RemoteLearningElementWithClassification[];
    }>>;
}

Type declaration

Generated using TypeDoc