UNPKG

react-native-yookassa

Version:
11 lines 425 B
export type PaymentType = 'YOO_MONEY' | 'GOOGLE_PAY' | 'BANK_CARD' | 'SBERBANK' | 'SBP'; export type SavePaymentMethodType = 'ON' | 'OFF' | 'USER_SELECTS'; export type Currency = 'RUB' | 'USD' | 'EUR' | 'CUSTOM'; export interface Payment { amount: number; currency: Currency; types: PaymentType[]; savePaymentMethod: SavePaymentMethodType; yooKassaClientId: string; } //# sourceMappingURL=Payment.d.ts.map