Perseus
    Preparing search index...
    type PerseusNumericInputAnswer = {
        answerForms?: MathFormat[];
        maxError?: number | null;
        message: string;
        simplify: PerseusNumericInputSimplify;
        status: string;
        strict: boolean;
        value?: number | null;
    }
    Index

    Properties

    answerForms?: MathFormat[]

    The forms available for this answer.

    maxError?: number | null

    A range of error +/- the value

    message: string

    Translatable Display; A description for why this answer is correct, wrong, or ungraded

    Unsimplified answers are Ungraded, Accepted, or Wrong.

    status: string

    Whether this answer is "correct", "wrong", or "ungraded"

    strict: boolean

    Whether we should check the answer strictly against the configured answerForms (strict = true) or include the set of default answerForms (strict = false).

    value?: number | null

    The expected answer