Kizuki
    Preparing search index...

    Interface DueItem

    One line of the "due" list on the Today page.

    interface DueItem {
        conceptId: string;
        courseId: string;
        courseName: string;
        due: string;
        name: string;
        streak: number;
    }
    Index
    conceptId: string

    The concept's id.

    courseId: string

    The course the concept belongs to.

    courseName: string

    The course's name, or an empty string if the course is missing.

    due: string

    The day the concept comes back, as YYYY-MM-DD.

    name: string

    The concept's current name.

    streak: number

    Clean sessions in a row since the last miss.