lightningdevkit
Version:
Lightning Development Kit
27 lines (26 loc) • 943 B
text/typescript
import { MessageSendInstructions } from '../structs/MessageSendInstructions.mjs';
import { AsyncPaymentsMessage } from '../structs/AsyncPaymentsMessage.mjs';
import { CommonBase } from './CommonBase.mjs';
/**
* A Tuple
*/
export declare class TwoTuple_AsyncPaymentsMessageMessageSendInstructionsZ extends CommonBase {
/**
*
*/
get_a(): AsyncPaymentsMessage;
/**
*
*/
get_b(): MessageSendInstructions;
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_AsyncPaymentsMessageMessageSendInstructionsZ;
/**
* Creates a new C2Tuple_AsyncPaymentsMessageMessageSendInstructionsZ from the contained elements.
*/
static constructor_new(a: AsyncPaymentsMessage, b: MessageSendInstructions): TwoTuple_AsyncPaymentsMessageMessageSendInstructionsZ;
}