ExecutionResult

Result structure for execution functions

Definition

export interface ExecutionResult<T = any> {
    data: T | null;
    errorMessage?: string;
    error?: any;
}

Usage

import { ExecutionResult } from 'uxp/components';

Last updated