[TS] Update auto-generated TypeScript Bindings
[ldk-java] / ts / structs / TwoTuple_u32ScriptZ.mts
index 14a5273df23c8ca0dcd2e89536fad321508f049d..d0058f726eef5cc04921e4ca66af2819de77a7b5 100644 (file)
@@ -281,23 +281,35 @@ import CommonBase from './CommonBase.mjs';
 import * as bindings from '../bindings.mjs'
 
 
+/**
+ * A Tuple
+ */
 export class TwoTuple_u32ScriptZ extends CommonBase {
        /* @internal */
        public constructor(_dummy: object, ptr: number) {
                super(ptr, bindings.C2Tuple_u32ScriptZ_free);
        }
 
+       /**
+        * 
+        */
        public get_a(): number {
                const ret: number = bindings.C2Tuple_u32ScriptZ_get_a(this.ptr);
                return ret;
        }
 
+       /**
+        * 
+        */
        public get_b(): Uint8Array {
                const ret: number = bindings.C2Tuple_u32ScriptZ_get_b(this.ptr);
                const ret_conv: Uint8Array = bindings.decodeUint8Array(ret);
                return ret_conv;
        }
 
+       /**
+        * Creates a new C2Tuple_u32ScriptZ from the contained elements.
+        */
        public static constructor_new(a: number, b: Uint8Array): TwoTuple_u32ScriptZ {
                const ret: number = bindings.C2Tuple_u32ScriptZ_new(a, bindings.encodeUint8Array(b));
                const ret_hu_conv: TwoTuple_u32ScriptZ = new TwoTuple_u32ScriptZ(null, ret);