UNPKG

gradebook-base

Version:

Defines simple interfaces for gradebook projects.

13 lines (12 loc) 662 B
import { ISkill } from './ISkill'; import { IWeight } from './IWeight'; import { IMastery } from './IMastery'; import { IGrade } from './IGrade'; import { IGradeMastery } from './IGradeMastery'; import { IGradeMasteryScore } from './IGradeMasteryScore'; import { ISkillConfig } from './ISkillConfig'; import { ISkillMastery } from './ISkillMastery'; import { IAssessment } from './IAssessment'; import { ICandidate } from './ICandidate'; import { IAssessmentResult } from './IAssessmentResult'; export { IAssessment, IAssessmentResult, ICandidate, IGrade, IGradeMastery, IGradeMasteryScore, ISkill, ISkillConfig, ISkillMastery, IMastery, IWeight, };