UNPKG

@lexriver/yandex-pay

Version:

A TypeScript client for Yandex Pay API to integrate payment processing in your Node.js applications

18 lines (17 loc) 269 B
/** * Standard API response structure from Yandex Pay API */ export interface ApiResponse<T> { /** * HTTP status code */ code: number; /** * Response status */ status: 'success'; /** * Response data */ data: T; }