lightningdevkit
Version:
Lightning Development Kit
29 lines (28 loc) • 648 B
text/typescript
import { CommonBase } from './CommonBase.mjs';
/**
* A Tuple
*/
export declare class ThreeTuple_StrStrStrZ extends CommonBase {
/**
*
*/
get_a(): string;
/**
*
*/
get_b(): string;
/**
*
*/
get_c(): string;
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(): ThreeTuple_StrStrStrZ;
/**
* Creates a new C3Tuple_StrStrStrZ from the contained elements.
*/
static constructor_new(a: string, b: string, c: string): ThreeTuple_StrStrStrZ;
}