Overview
Defines contracts and implementations for function-call identities (context + function name + arguments) used by call-result caching.
API Reference
Input shape (context, function name, arguments) used to build a function-call identity.
export interface IFunctionCallIndexData {
readonly context: unknown;
readonly functionName: string;
readonly arguments: unknown[];
}import type { IFunctionCallIndexData } from '@rs-x/core';3 members in this interface.
readonly arguments: unknown[]Type
unknown[]
readonly context: unknownType
unknown
readonly functionName: stringType
string