mimiq
    Preparing search index...

    Interface MimiqRuntimeClient

    interface MimiqRuntimeClient {
        advanceRun(input: AdvanceRunRequest): Promise<AdvanceRunResponse>;
        cleanupRun(input: CleanupRunRequest): Promise<void>;
        evaluateRun(input: EvaluateRunRequest): Promise<EvaluationReport>;
        generateAllReports(): Promise<GenerateReportsResult>;
        getAggregateReport(input: GetAggregateReportRequest): Promise<string>;
        getReport(input: GetReportRequest): Promise<string>;
        getTrace(input: GetTraceRequest): Promise<RunTrace>;
        startRun(input: StartRunRequest): Promise<StartRunResponse>;
    }
    Index

    Methods