Type alias CreateLearningElementSolutionsStepProps

CreateLearningElementSolutionsStepProps: {
    LearningElementsClassification: {
        [key: number]: RemoteLearningElementWithClassification[];
    };
    disableNext?: (() => boolean);
    isLoading?: boolean;
    learningElementsWithSolutions: {
        [key: number]: RemoteLearningElementWithSolution[];
    };
    nextButtonText: string;
    onBack: (() => void);
    onLearningElementSolutionChange: ((selectedSolutions) => void);
    onNext: (() => void);
    selectedSolutions: {
        [key: number]: Solution[];
    };
    selectedTopics: RemoteTopics[];
}

Type declaration

Generated using TypeDoc