Kizuki
    Preparing search index...

    Interface ConceptState

    A concept as it stands now.

    interface ConceptState {
        conceptId: string;
        confirmedAt?: string;
        courseId: string;
        materialId: string;
        mergedInto?: string;
        name: string;
        proposedAt: string;
        quotes: { passageId: string; text: string }[];
        sectionId: string;
        status: "proposed" | "dropped" | "confirmed" | "merged";
    }
    Index
    conceptId: string

    The concept's id: con_ and 16 hex characters.

    confirmedAt?: string

    When you confirmed the concept, as an ISO time string. undefined if you never did.

    courseId: string

    The course the concept belongs to.

    materialId: string

    The material the concept was proposed from.

    mergedInto?: string

    The id of the concept this one was merged into. Set only when status is merged.

    name: string

    The concept's current name, after any renames.

    proposedAt: string

    When the concept was proposed, as an ISO time string.

    quotes: { passageId: string; text: string }[]

    The sentences from the material that back the concept. Gains the quotes of concepts merged into it.

    sectionId: string

    The section of that material the concept belongs to.

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

    proposed until you confirm, drop, or merge it. Only confirmed concepts are taught and reviewed.