UNPKG

automatic-assessments

Version:

Automatic assessment of Marty and Scratch 3.0 projects

8 lines (7 loc) 200 B
import { Target } from '../types/main'; declare abstract class Analyzer { abstract score: number; abstract targets: Target[]; abstract execute(): number; } export default Analyzer;