Bindings updates
[ldk-java] / ts / structs / ChannelReestablish.ts
index c4a0a13dbd4f55257959a632342661dc506b88f5..2394cb2dc9e3e80d112214cf9951d36d1626d6d9 100644 (file)
@@ -1,55 +1,63 @@
 
+            
 import CommonBase from './CommonBase';
 import * as bindings from '../bindings' // TODO: figure out location
 
-public class ChannelReestablish extends CommonBase {
-       ChannelReestablish(Object _dummy, long ptr) { super(ptr); }
-       @Override @SuppressWarnings("deprecation")
-       protected void finalize() throws Throwable {
-               super.finalize();
-               if (ptr != 0) { bindings.ChannelReestablish_free(ptr); }
-       }
 
+
+            export default class ChannelReestablish extends CommonBase {
+                constructor(_dummy: object, ptr: number) {
+                    super(ptr);
+                }
+
+                
+                protected finalize() {
+                    super.finalize();
+
+                    if (this.ptr != 0) {
+                        bindings.ChannelReestablish_free(this.ptr);
+                    }
+                }
        public ChannelReestablish clone() {
-               uint32_t ret = bindings.ChannelReestablish_clone(this.ptr);
-               ChannelReestablish ret_hu_conv = new ChannelReestablish(null, ret);
+               number ret = bindings.ChannelReestablish_clone(this.ptr);
+               const ret_hu_conv: ChannelReestablish = new ChannelReestablish(null, ret);
                return ret_hu_conv;
        }
 
-       public byte[] get_channel_id() {
-               byte[] ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
+       public Uint8Array get_channel_id() {
+               Uint8Array ret = bindings.ChannelReestablish_get_channel_id(this.ptr);
                return ret;
        }
 
-       public void set_channel_id(byte[] val) {
+       public void set_channel_id(Uint8Array val) {
                bindings.ChannelReestablish_set_channel_id(this.ptr, val);
        }
 
-       public long get_next_local_commitment_number() {
-               long ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr);
+       public number get_next_local_commitment_number() {
+               number ret = bindings.ChannelReestablish_get_next_local_commitment_number(this.ptr);
                return ret;
        }
 
-       public void set_next_local_commitment_number(long val) {
+       public void set_next_local_commitment_number(number val) {
                bindings.ChannelReestablish_set_next_local_commitment_number(this.ptr, val);
        }
 
-       public long get_next_remote_commitment_number() {
-               long ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
+       public number get_next_remote_commitment_number() {
+               number ret = bindings.ChannelReestablish_get_next_remote_commitment_number(this.ptr);
                return ret;
        }
 
-       public void set_next_remote_commitment_number(long val) {
+       public void set_next_remote_commitment_number(number val) {
                bindings.ChannelReestablish_set_next_remote_commitment_number(this.ptr, val);
        }
 
-       public byte[] write() {
-               byte[] ret = bindings.ChannelReestablish_write(this.ptr);
+       public Uint8Array write() {
+               Uint8Array ret = bindings.ChannelReestablish_write(this.ptr);
                return ret;
        }
 
-       public static Result_ChannelReestablishDecodeErrorZ constructor_read(byte[] ser) {
-               uint32_t ret = bindings.ChannelReestablish_read(ser);
+       public static Result_ChannelReestablishDecodeErrorZ constructor_read(Uint8Array ser) {
+               number ret = bindings.ChannelReestablish_read(ser);
                Result_ChannelReestablishDecodeErrorZ ret_hu_conv = Result_ChannelReestablishDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }