Skip to content

Commit

Permalink
Correct a TypeScript return type to 'string' (#712)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeesun Kim <[email protected]>
  • Loading branch information
jeesunikim and Jeesun Kim committed Nov 10, 2023
1 parent 65cc860 commit a50ea4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1229,5 +1229,5 @@ export function walkInvocationTree(

export namespace Soroban {
function formatTokenAmount(address: string, decimals: number): string;
function parseTokenAmount(value: string, decimals: number): Address;
function parseTokenAmount(value: string, decimals: number): string;
}

0 comments on commit a50ea4c

Please sign in to comment.