UNPKG

@lexriver/yandex-pay

Version:

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

15 lines (14 loc) 248 B
/** * Configuration for the YandexPayAPI client */ export interface ApiConfig { /** * API key for authentication */ apiKey: string; /** * Use sandbox environment * @default false */ isSandbox?: boolean; }