API Reference

IFunctionCallResultinterface

Input payload for one cached call result: function name, arguments, and computed result value.

Overview

Caches function-call results to avoid unnecessary recomputation.

Declaration

export interface IFunctionCallResult extends IFunctionCallResultIdInfo {
  result: unknown;
}

Import

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

Members

1 member in this interface.

result
property
result: unknown

Type

unknown