UNPKG

@ijodkor/nest-payme

Version:

NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.

20 lines (19 loc) 350 B
interface Shipping { title: string; price: number; } interface ReceiptItem { title: string; price: number; discount: number; count: number; code: string; package_code: string; vat_percent: number; } export interface OfdReceipt { receipt_type: 0; shipping?: Shipping; items: ReceiptItem[]; } export {};