votes
    Preparing search index...

    Interface StepResult<C>

    interface StepResult<C extends string> {
        after: C[][];
        before: C[][];
        rankerName: string;
        rounds?: Round<C>[];
        scores?: ScoreObject<C>;
    }

    Type Parameters

    • C extends string
    Index

    Properties

    after: C[][]
    before: C[][]
    rankerName: string

    Constructor name of the ranker that produced this step.

    rounds?: Round<C>[]
    scores?: ScoreObject<C>