X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-java;a=blobdiff_plain;f=ts%2Fstructs%2FType.mts;h=ac6bd670ce2ed0c7203375f7ab011f2767b3dfe0;hp=97ee7c2e99448b44b96fb98b45333462503c79df;hb=7d372e434499e36b8be0d090ef733a03650dec6e;hpb=d87886bb194886ef86d3597a5cdc142b6ccc89e9 diff --git a/ts/structs/Type.mts b/ts/structs/Type.mts index 97ee7c2e..ac6bd670 100644 --- a/ts/structs/Type.mts +++ b/ts/structs/Type.mts @@ -280,13 +280,12 @@ import { MultiThreadedLockableScore } from '../structs/MultiThreadedLockableScor import CommonBase from './CommonBase.mjs'; import * as bindings from '../bindings.mjs' -import * as InternalUtils from '../InternalUtils.mjs' export interface TypeInterface { type_id(): number; - debug_str(): String; + debug_str(): string; write(): Uint8Array; } @@ -311,13 +310,15 @@ export class Type extends CommonBase { const ret: number = arg.type_id(); return ret; }, - debug_str (): String { - const ret: String = arg.debug_str(); - return ret; + debug_str (): number { + const ret: string = arg.debug_str(); + const result: number = bindings.encodeString(ret); + return result; }, - write (): Uint8Array { + write (): number { const ret: Uint8Array = arg.write(); - return ret; + const result: number = bindings.encodeUint8Array(ret); + return result; }, } as bindings.LDKType; const ptr: number = bindings.LDKType_new(structImplementation); @@ -331,14 +332,16 @@ export class Type extends CommonBase { return ret; } - public debug_str(): String { - const ret: String = bindings.Type_debug_str(this.ptr); - return ret; + public debug_str(): string { + const ret: number = bindings.Type_debug_str(this.ptr); + const ret_conv: string = bindings.decodeString(ret); + return ret_conv; } public write(): Uint8Array { - const ret: Uint8Array = bindings.Type_write(this.ptr); - return ret; + const ret: number = bindings.Type_write(this.ptr); + const ret_conv: Uint8Array = bindings.decodeUint8Array(ret); + return ret_conv; } public clone_ptr(): number {