qus-canvas
Version:
client api for canvas
19 lines • 407 B
TypeScript
export interface OutcomeRollupInterface {
scores: ScoreInterface[];
links: {
user: string;
section: string;
status: string;
};
}
export interface ScoreInterface {
score: number;
title: string;
submittedAt: string;
count: number;
hidePoints: boolean;
links: {
outcome: string;
};
}
//# sourceMappingURL=outcome-rollup.interface.d.ts.map