AxAgentInputUpdateCallback
type AxAgentInputUpdateCallback<IN> = (currentInputs: Readonly<IN>) =>
| Promise<Partial<IN> | undefined>
| Partial<IN>
| undefined;Type Parameters
| Type Parameter |
|---|
IN extends AxGenIn |
Parameters
| Parameter | Type |
|---|---|
currentInputs | Readonly<IN> |
Returns
| Promise<Partial<IN> | undefined>
| Partial<IN>
| undefined