9 lines
421 B
TypeScript
9 lines
421 B
TypeScript
import { GIFTQuestionRenderer } from './gift-question-renderer.js';
|
|
import { Matching } from 'gift-pegjs';
|
|
import { ProcessingError } from '../../processing-error.js';
|
|
|
|
export class MatchingQuestionRenderer extends GIFTQuestionRenderer<Matching> {
|
|
override render(_question: Matching, _questionNumber: number): string {
|
|
throw new ProcessingError("The question type 'Matching' is not supported yet!");
|
|
}
|
|
}
|