API Reference

IFunctionCallIndexDatainterface

Input shape (context, function name, arguments) used to build a function-call identity.

Overview

Defines contracts and implementations for function-call identities (context + function name + arguments) used by call-result caching.

Declaration

export interface IFunctionCallIndexData {
  readonly context: unknown;
  readonly functionName: string;
  readonly arguments: unknown[];
}

Import

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

Members

3 members in this interface.

readonly arguments
propertyreadonly
readonly arguments: unknown[]

Type

unknown[]

readonly context
propertyreadonly
readonly context: unknown

Type

unknown

readonly functionName
propertyreadonly
readonly functionName: string

Type

string