Overview
Caches function-call results to avoid unnecessary recomputation.
API Reference
Input payload for one cached call result: function name, arguments, and computed result value.
export interface IFunctionCallResult extends IFunctionCallResultIdInfo {
result: unknown;
}import type { IFunctionCallResult } from '@rs-x/core';1 member in this interface.
result: unknownType
unknown