Skip to content

Commit

Permalink
removed render
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick committed Jul 10, 2023
1 parent 060df4e commit ca5d77c
Showing 1 changed file with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@

import { html } from 'lit';
import { QtiExpression } from './qti-expression';

export class QtiConditionExpression extends QtiExpression<boolean> {
override render() {
return html``;
}

public calculate(): boolean {
// eslint-disable-next-line no-throw-literal
throw new Error("Not implemented");
throw new Error('Not implemented');
}
}
}

0 comments on commit ca5d77c

Please sign in to comment.