lightningdevkit
Version:
Lightning Development Kit
27 lines (26 loc) • 871 B
text/typescript
import { ResponseInstruction } from '../structs/ResponseInstruction.mjs';
import { ReleaseHeldHtlc } from '../structs/ReleaseHeldHtlc.mjs';
import { CommonBase } from './CommonBase.mjs';
/**
* A Tuple
*/
export declare class TwoTuple_ReleaseHeldHtlcResponseInstructionZ extends CommonBase {
/**
*
*/
get_a(): ReleaseHeldHtlc;
/**
*
*/
get_b(): ResponseInstruction;
clone_ptr(): bigint;
/**
* Creates a new tuple which has the same data as `orig`
* but with all dynamically-allocated buffers duplicated in new buffers.
*/
clone(): TwoTuple_ReleaseHeldHtlcResponseInstructionZ;
/**
* Creates a new C2Tuple_ReleaseHeldHtlcResponseInstructionZ from the contained elements.
*/
static constructor_new(a: ReleaseHeldHtlc, b: ResponseInstruction): TwoTuple_ReleaseHeldHtlcResponseInstructionZ;
}