Xivgear Types Documentation
    Preparing search index...

    Interface CycleSimResultFull<T>

    Represents the final result of a simulation run. Sim implementors should extend this type with whatever extra data is available.

    interface CycleSimResultFull<T extends SimResult> {
        all: T[];
        best: T;
        mainDpsResult: number;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    all: T[]
    best: T
    mainDpsResult: number