UNPKG

lightningdevkit

Version:
20 lines (19 loc) 668 B
import { CommonBase } from './CommonBase.mjs'; /** * An error type that may be returned to LDK in order to safely abort event handling if it can't * currently succeed (e.g., due to a persistence failure). * * Depending on the type, LDK may ensure the event is persisted and will eventually be replayed. * Please refer to the documentation of each [`Event`] variant for more details. */ export declare class ReplayEvent extends CommonBase { /** * Constructs a new ReplayEvent given each field */ static constructor_new(): ReplayEvent; clone_ptr(): bigint; /** * Creates a copy of the ReplayEvent */ clone(): ReplayEvent; }