nestjs-temporal-core
    Preparing search index...

    Interface WorkflowExecutionResult<T>

    Workflow execution result

    interface WorkflowExecutionResult<T = unknown> {
        error?: Error;
        executionTime?: number;
        result?: T;
        runId?: string;
        success: boolean;
        workflowId?: string;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    error?: Error
    executionTime?: number
    result?: T
    runId?: string
    success: boolean
    workflowId?: string