Update index.ts

This commit is contained in:
Egor
2026-01-16 04:10:44 +03:00
committed by GitHub
parent c8eee801cd
commit e4f2dbcfc2

View File

@@ -348,6 +348,12 @@ export interface Transaction {
completed_at: string | null
}
export interface PaymentMethodOption {
id: string
name: string
description?: string | null
}
export interface PaymentMethod {
id: string
name: string
@@ -355,6 +361,7 @@ export interface PaymentMethod {
min_amount_kopeks: number
max_amount_kopeks: number
is_available: boolean
options?: PaymentMethodOption[] | null
}
// Referral types