useCreateTopicModalProps: {
    selectedLearningElementSolution: {
        [topicId: number]: RemoteLearningElementWithSolution[];
    };
    selectedSolutions: {
        [topicId: number]: Solution[];
    };
    setCreateTopicIsSending?: Dispatch<SetStateAction<boolean>>;
    setSelectedAlgorithms?: Dispatch<SetStateAction<{
        [p: number]: CreateAlgorithmTableNameProps;
    }>>;
    setSelectedLearningElementSolution: Dispatch<SetStateAction<{
        [topicId: number]: RemoteLearningElementWithSolution[];
    }>>;
    setSelectedLearningElements: Dispatch<SetStateAction<{
        [p: number]: RemoteLearningElement[];
    }>>;
    setSelectedLearningElementsClassification: Dispatch<SetStateAction<{
        [p: number]: RemoteLearningElementWithClassification[];
    }>>;
    setSelectedSolutions: Dispatch<SetStateAction<{
        [topicId: number]: Solution[];
    }>>;
    setSelectedTopics?: Dispatch<SetStateAction<RemoteTopics[]>>;
    setSuccessfullyCreatedTopicsCount?: Dispatch<SetStateAction<number>>;
}

Type declaration

Generated using TypeDoc