Type alias TExecuteProcessResponse<T>

TExecuteProcessResponse<T>: T extends "async"
    ? TAsyncJobResult
    : T extends "sync"
        ? TSyncJobResult
        : TAsyncJobResult | TSyncJobResult

response for the execute process request

Type Parameters

Generated using TypeDoc