Kizuki
    Preparing search index...

    Interface LinkState

    A prerequisite link as it stands now: conceptId needs needsConceptId first.

    interface LinkState {
        conceptId: string;
        courseId: string;
        linkId: string;
        needsConceptId: string;
        status: "proposed" | "dropped" | "confirmed";
    }
    Index
    conceptId: string

    The concept that needs the other first. May point at a concept that was merged since.

    courseId: string

    The course both concepts belong to.

    linkId: string

    The link's id: link_ and 16 hex characters.

    needsConceptId: string

    The concept to understand first. May point at a concept that was merged since.

    status: "proposed" | "dropped" | "confirmed"

    proposed until you confirm or drop it. Only confirmed links affect the review order.