UNPKG

@trowdev/pagseguro-sdk

Version:

Biblioteca para realização de checkout com PagSeguro

20 lines (18 loc) 355 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; } }