UNPKG

gradebook-base

Version:

Defines simple interfaces for gradebook projects.

10 lines (9 loc) 273 B
import { IGrade, IMastery, ISkillConfig, ISkillMastery, IWeight } from '.'; export interface IAssessment { name: string; grade: IGrade[]; weight: IWeight[]; mastery: IMastery[]; skillConfig: ISkillConfig[]; skillMastery: ISkillMastery[]; }