aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index f9d753f28..e6564b91b 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -472,3 +472,10 @@ export interface NextUrlResult {
nextUrl: string;
lastSessionId: string | undefined;
}
+
+export interface PreparePayResult {
+ status: "paid" | "insufficient-balance" | "payment-possible" | "error";
+ contractTerms?: ContractTerms;
+ error?: string;
+ proposalId?: number;
+} \ No newline at end of file