Skip to content

Commit

Permalink
Merge pull request #215 from synonymdev/fix/export-type
Browse files Browse the repository at this point in the history
fix: export TPaymentState type
  • Loading branch information
ovitrif authored Feb 26, 2024
2 parents da47bd8 + 8951cb1 commit 4662875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export type TChannelManagerFundingGenerationReady = {
value_satoshis: number;
};

type TPaymentState = 'pending' | 'failed' | 'successful';
export type TPaymentState = 'pending' | 'failed' | 'successful';

export type TChannelManagerClaim = {
payment_hash: string;
Expand Down

0 comments on commit 4662875

Please sign in to comment.