UNPKG

@ijodkor/nest-payme

Version:

NestJs ilovalar uchun Payme ETT bilan integratsiya qilish uchun kutubxona.

12 lines (11 loc) 399 B
import { CardCreateDto } from "../dto/card-create.dto"; import { CardVerifyDto } from "../dto/card-verify.dto"; import { CardService } from "./card.service"; export declare class CardController { private readonly cardService; constructor(cardService: CardService); cardCreate(dto: CardCreateDto): Promise<{ token: any; }>; cardVerify(dto: CardVerifyDto): Promise<any>; }