mercadopago
Version:
Mercadopago SDK for Node.js
16 lines (15 loc) • 430 B
TypeScript
import type { MercadoPagoConfig } from '../../../mercadoPagoConfig';
import { Options } from '../../../types';
export declare type OAuthRefreshClient = {
body: OAuthRefresh;
config: MercadoPagoConfig;
};
export declare type OAuthRefresh = {
client_secret?: string;
client_id?: string;
refresh_token?: string;
};
export declare type OAuthRefreshData = {
body: OAuthRefresh;
requestOptions?: Options;
};