UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

25 lines (23 loc) 617 B
type CanvasCourseLevelAssignmentData = ( { assignment_id: number, title: string, points_possible?: number | null, due_at?: string | null, lock_at?: string | null, unlock_at?: string | null, muted?: boolean | null, min_score?: number | null, max_score?: number | null, median?: number | null, first_quartile?: number | null, third_quartile?: number | null, tardiness_breakdown: { on_time?: number | null, missing?: number | null, late?: number | null, total?: number | null, }, } )[]; export default CanvasCourseLevelAssignmentData;