lightningdevkit
Version:
Lightning Development Kit
36 lines (35 loc) • 1.04 kB
text/typescript
import { OutPoint } from '../structs/OutPoint.mjs';
import { ChannelId } from '../structs/ChannelId.mjs';
import { MonitorEvent } from '../structs/MonitorEvent.mjs';
import { CommonBase } from './CommonBase.mjs';
/**
* A Tuple
*/
export declare class FourTuple_OutPointChannelIdCVec_MonitorEventZPublicKeyZ extends CommonBase {
/**
*
*/
get_a(): OutPoint;
/**
*
*/
get_b(): ChannelId;
/**
*
*/
get_c(): MonitorEvent[];
/**
*
*/
get_d(): Uint8Array;
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(): FourTuple_OutPointChannelIdCVec_MonitorEventZPublicKeyZ;
/**
* Creates a new C4Tuple_OutPointChannelIdCVec_MonitorEventZPublicKeyZ from the contained elements.
*/
static constructor_new(a: OutPoint, b: ChannelId, c: MonitorEvent[], d: Uint8Array): FourTuple_OutPointChannelIdCVec_MonitorEventZPublicKeyZ;
}