@argdown/core
    Preparing search index...

    Interface IInference

    An inference in an argument's premise-conclusion-structure (pcs). To keep the pcs simple, inferences are stored as property of the conclusion statement that is inferred. Thus, the last statement of a pcs will always be a conclusion containing an inference.

    Inferences can be identified by their argument's title and their conclusion's index in the argument's pcs.

    interface IInference {
        argumentTitle?: string;
        conclusionIndex?: number;
        data?: any;
        endColumn?: number;
        endLine?: number;
        endOffset?: number;
        inferenceRules?: string[];
        relations?: IRelation[];
        section?: ISection | null;
        startColumn?: number;
        startLine?: number;
        startOffset?: number;
        title?: string;
        type: INFERENCE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    argumentTitle?: string

    The title of the argument of whose pcs this inference is a part of

    conclusionIndex?: number

    The pcs index of the conclusion containing this inference

    data?: any
    endColumn?: number
    endLine?: number
    endOffset?: number
    inferenceRules?: string[]
    relations?: IRelation[]
    section?: ISection | null
    startColumn?: number
    startLine?: number
    startOffset?: number
    title?: string
    type: INFERENCE