3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class HTLCUpdate extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.HTLCUpdate_free(this.ptr);
21 public HTLCUpdate clone() {
22 number ret = bindings.HTLCUpdate_clone(this.ptr);
23 const ret_hu_conv: HTLCUpdate = new HTLCUpdate(null, ret);
24 ret_hu_conv.ptrs_to.add(this);
28 public Uint8Array write() {
29 Uint8Array ret = bindings.HTLCUpdate_write(this.ptr);
33 public static Result_HTLCUpdateDecodeErrorZ constructor_read(Uint8Array ser) {
34 number ret = bindings.HTLCUpdate_read(ser);
35 Result_HTLCUpdateDecodeErrorZ ret_hu_conv = Result_HTLCUpdateDecodeErrorZ.constr_from_ptr(ret);