enums in typescript are terrible

This commit is contained in:
Danny Morabito 2025-07-09 16:34:52 +02:00
parent 4b9a870063
commit 754cd2d198
Signed by: dannym
GPG key ID: 7CC8056A5A04557E
2 changed files with 12 additions and 12 deletions

View file

@ -14,7 +14,7 @@ import initBreez, {
import { privateKeyFromSeedWords as nostrPrivateKeyFromSeedWords } from "nostr-tools/nip06";
import { getPublicKey, nip19 } from "nostr-tools";
import { type CashuStore, type CashuTxn, PaymentStatus } from "./paymentStatus";
export type { CashuStore, PaymentStatus } from "./paymentStatus";
export { type CashuStore, PaymentStatus } from "./paymentStatus";
import PortalBtcWalletCashu from "./cashu";
type CombinedPayment = Payment | CashuTxn;