couch-kit
    Preparing search index...

    Interface ReplayResult<S>

    The result of replaying a recording.

    interface ReplayResult<S extends IGameState = IGameState> {
        actionCount: number;
        duration: number;
        finalState: S;
        snapshots: StateSnapshot<S>[];
    }

    Type Parameters

    Index
    actionCount: number
    duration: number
    finalState: S
    snapshots: StateSnapshot<S>[]