mercadopago
Version:
Mercadopago SDK for Node.js
15 lines (14 loc) • 384 B
TypeScript
export declare type OAuthGetAuthorizationURLClient = {
options: AuthorizationRequest;
};
export declare type AuthorizationRequest = {
client_id?: string;
state?: string;
redirect_uri?: string;
};
export declare type AuthorizationResponse = {
authorization_url: string;
};
export declare type OAuthGetAuthorizationURLData = {
options?: AuthorizationRequest;
};