UNPKG

@trowdev/pagseguro-sdk

Version:

Biblioteca para realização de checkout com PagSeguro

19 lines (18 loc) 354 B
export interface PSAccount { email: string; token: string; sandbox?: boolean; } export interface PSItemDetails { id: number; description: string; amount: string; quantity: number; weight: number; } export interface PSCheckoutDetails { checkout: { code: string; date: string; }; }