import { SUPPORTED_CURRENCIES } from '../constants.js'; /** * Supported currency types */ export type Currency = typeof SUPPORTED_CURRENCIES[number]; /** * Transaction types */ export type TransactionType = 'purchase' | 'pre-auth'; /** * Base API response structure */ export interface BaseResponse { status: number; message?: string; [key: string]: any; } /** * Common transaction information */ export interface TransactionInfo { transaction_id?: string; tran_id?: string; amount?: number; currency?: Currency; status?: string; [key: string]: any; } //# sourceMappingURL=common.d.ts.map