@openlearning/imscc-packager
Version:
Package JSON course structure into an IMSCC package
20 lines (19 loc) • 563 B
TypeScript
import { Section } from '../../../types';
export declare function multipleChoiceQuestion({ quiz }: {
quiz: Section;
}): string;
export declare function matchingQuestion({ quiz }: {
quiz: Section;
}): string;
export declare function numericalQuestion({ quiz }: {
quiz: Section;
}): string;
export declare function multipleAnswersQuestion({ quiz }: {
quiz: Section;
}): string;
export declare function shortAnswerQuestion({ quiz }: {
quiz: Section;
}): string;
export declare function textOnlyQuestion({ quiz }: {
quiz: Section;
}): string;