Kizuki
    Preparing search index...

    Interface CourseState

    A course as it stands now.

    interface CourseState {
        courseId: string;
        createdAt: string;
        examDate: string | null;
        name: string;
    }
    Index
    courseId: string

    The course's id: course_ and 16 hex characters.

    createdAt: string

    When the course was created, as an ISO time string.

    examDate: string | null

    The exam date as YYYY-MM-DD, or null if none is set.

    name: string

    The course's name as you typed it, trimmed, with runs of spaces made single.