Skip to content

Commit

Permalink
fix: Sync TypeScript types (#2195)
Browse files Browse the repository at this point in the history
  • Loading branch information
marc2332 authored Mar 22, 2024
1 parent cd88ca9 commit cccf191
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bindings/nodejs/lib/types/wallet/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { OutputData } from './output';
import { InclusionState } from './transaction';
import { InputSigningData, Remainder } from '../client';
import { Transaction, SignedTransactionPayload, TransactionId } from '../block';
import { OutputResponse } from '../models';
import { OutputWithMetadata } from '../models';
import { HexEncodedString } from '../utils';

/**
Expand Down Expand Up @@ -59,7 +59,7 @@ class LedgerAddressGenerationWalletEvent extends WalletEvent {
class NewOutputWalletEvent extends WalletEvent {
output: OutputData;
transaction?: SignedTransactionPayload;
transactionInputs?: OutputResponse[];
transactionInputs?: OutputWithMetadata[];

/**
* @param output The new output.
Expand All @@ -69,7 +69,7 @@ class NewOutputWalletEvent extends WalletEvent {
constructor(
output: OutputData,
transaction?: SignedTransactionPayload,
transactionInputs?: OutputResponse[],
transactionInputs?: OutputWithMetadata[],
) {
super(WalletEventType.NewOutput);
this.output = output;
Expand Down

0 comments on commit cccf191

Please sign in to comment.