Kizuki
    Preparing search index...

    Interface TodayView

    What the Today page shows: concepts due now, coming up, and waiting on prerequisites.

    interface TodayView {
        blocked: {
            conceptId: string;
            courseName: string;
            name: string;
            waitingOn: string[];
        }[];
        due: DueItem[];
        upcoming: DueItem[];
    }
    Index
    blocked: {
        conceptId: string;
        courseName: string;
        name: string;
        waitingOn: string[];
    }[]

    Concepts waiting on prerequisites, with the names of the concepts they wait on in waitingOn (an id if the concept is missing).

    due: DueItem[]

    Concepts due today or earlier, soonest first.

    upcoming: DueItem[]

    Concepts due after today, soonest first.