Skip to content

Latest commit

 

History

History
85 lines (46 loc) · 1.31 KB

File metadata and controls

85 lines (46 loc) · 1.31 KB

Home > @aws/durable-execution-sdk-js-testing > CallbackDetails

CallbackDetails interface

Details for a callback operation result, including the callback identifier and outcome.

Signature:

export interface CallbackDetails<TResult = unknown>

Properties

Property

Modifiers

Type

Description

callbackId

readonly

string

The unique identifier for the callback operation

error?

readonly

TestResultError

(Optional) The error that occurred during the callback operation, if any

result?

readonly

TResult

(Optional) The successful result of the callback operation, if available