Kizuki
    Preparing search index...

    Interface ClarificationState

    A "what does this mean?" question Kizuki asked about a passage, and your answer if given.

    interface ClarificationState {
        answer?: string;
        askedAt: string;
        clarificationId: string;
        passageId: string;
        question: string;
        quote: string;
    }
    Index
    answer?: string

    Your answer, trimmed. undefined until you answer; a later answer replaces an earlier one.

    askedAt: string

    When the question was asked, as an ISO time string.

    clarificationId: string

    The question's id: clar_ and 16 hex characters.

    passageId: string

    The passage the sentence comes from.

    question: string

    The question shown to you.

    quote: string

    The sentence from the material that Kizuki is not sure how to read.