UNPKG

react-sdk-mercadopago

Version:

A hook to facilitate the use of the mercadopago sdk js

16 lines 428 B
import { MercadoPago } from './protocols'; interface Constructable<T> { new (key: string, options?: { locale: string; }): T; } declare global { interface Window { MercadoPago: Constructable<MercadoPago>; } } declare const useMercadopago: (publicKey: string, options?: { locale: string; } | undefined) => MercadoPago | undefined; export default useMercadopago; //# sourceMappingURL=v2.d.ts.map