Skip to content

Commit

Permalink
PaymentRequestTag type
Browse files Browse the repository at this point in the history
  • Loading branch information
gudnuf committed Oct 15, 2024
1 parent 3fc85ba commit 105b84d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/model/types/wallet/paymentRequests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ export type RawPaymentRequest = {
t: Array<RawTransport>;
};

export type PaymentRequestTag = Array<string>;

export type PaymentRequestTransport = {
type: PaymentRequestTransportType;
target: string;
tags?: Array<Array<string>>;
tags?: Array<PaymentRequestTag>;
};

export type PaymentRequestPayload = {
Expand Down

0 comments on commit 105b84d

Please sign in to comment.