mercadopago
Version:
Mercadopago SDK for Node.js
17 lines (16 loc) • 451 B
TypeScript
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import type { Options } from '../../../types';
export declare type OAuthCreateClient = {
body: OAuthRequest;
config: MercadoPagoConfig;
};
export declare type OAuthRequest = {
client_secret?: string;
client_id?: string;
code?: string;
redirect_uri?: string;
};
export declare type OAuthCreateData = {
body: OAuthRequest;
requestOptions?: Options;
};