API Reference

IFunctionCallResultIdInfointerface

Interface that defines the call-identity payload used for cache lookup: functionName and arguments.

Overview

Caches function-call results to avoid unnecessary recomputation.

Declaration

export interface IFunctionCallResultIdInfo {
  arguments: unknown[];
  functionName: string;
}

Import

import type { IFunctionCallResultIdInfo } from '@rs-x/core';

Members

2 members in this interface.

arguments
property
arguments: unknown[]

Type

unknown[]

functionName
property
functionName: string

Type

string