Compare commits

...

2 Commits

Author SHA1 Message Date
Denis Angell
04286221c2 Update index.ts 2024-09-30 10:52:37 +02:00
Denis Angell
e4e13302ad Update packages/xrpl/src/models/common/index.ts
Co-authored-by: tequ <git@tequ.dev>
2024-09-30 10:50:48 +02:00

View File

@@ -17,7 +17,7 @@ export interface IssuedCurrencyAmount extends IssuedCurrency {
export type Amount = IssuedCurrencyAmount | string
export type AmountEntry = Amount
export type AmountEntry = { AmountEntry: { Amount: Amount } }
export interface Signer {
Signer: {
@@ -87,7 +87,7 @@ export interface HookParameter {
/**
* The value of the parameter.
*/
HookParameterValue: string
HookParameterValue?: string
}
}