iugu-client
v1.0.12
Published
It is Iugu client to typescript projects.
Downloads
4
Maintainers
Readme
###IUGU CLIENT It is Iugu client to typescript projects.
###Install
npm i iugu-client
###Example
const iugu = new Iugu("YOUR_APIKEY");
iugu.customer.create({
email: "[email protected]",
name: "user test"
})
.then((customer: Customer) => {
//Do something
})
.catch((err:any) => {});
Test
npm tst