votes
    Preparing search index...

    Interface StepResult<C>

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

    Type Parameters

    • C extends string
    Index
    after: C[][]
    before: C[][]
    rankerName: string
    rounds?: Round<C, undefined>[]
    scores?: ScoreObject<C>