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