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