UNPKG

kotanipay-sdk

Version:

Official Kotani Pay SDK for Node.js and Browser

23 lines 500 B
export interface ApiResponse<T> { success: boolean; data: T; message?: string; error?: string; timestamp?: string; } export interface PaginatedResponse<T> { data: T[]; pagination: { page: number; limit: number; total: number; hasMore: boolean; }; } export interface KotaniPayConfig { apiKey?: string; environment: 'sandbox' | 'production'; timeout?: number; baseUrl?: string; } //# sourceMappingURL=common.types.d.ts.map