Overview
Caches function-call results to avoid unnecessary recomputation.
API Reference
Interface that defines the call-identity payload used for cache lookup: functionName and arguments.
export interface IFunctionCallResultIdInfo {
arguments: unknown[];
functionName: string;
}import type { IFunctionCallResultIdInfo } from '@rs-x/core';2 members in this interface.
arguments: unknown[]Type
unknown[]
functionName: stringType
string