ExecuteRequestConfig

Definition

interface ExecuteRequestConfig {
    /**
    * Execution configuration for data fetching (action, service, microservice, etc.)
     */
    executeConfig: ExecuteConfig;

    /**
     * Optional execution options (autoExecute, debounce, polling, dependencies, etc.)
     */
    executeOptions?: UseExecuteOptions;
}

Usage

import { ExecuteRequestConfig } from 'uxp/components';

Last updated