lightningdevkit
Version:
Lightning Development Kit
25 lines (24 loc) • 603 B
text/typescript
import { CommonBase } from './CommonBase.mjs';
/**
* A Tuple
*/
export declare class TwoTuple_CVec_u8Zu64Z extends CommonBase {
/**
*
*/
get_a(): Uint8Array;
/**
*
*/
get_b(): bigint;
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_CVec_u8Zu64Z;
/**
* Creates a new C2Tuple_CVec_u8Zu64Z from the contained elements.
*/
static constructor_new(a: Uint8Array, b: bigint): TwoTuple_CVec_u8Zu64Z;
}