UNPKG

mailerlite-api-v2-node

Version:

[MailerLite API v2](https://developers.mailerlite.com/docs/getting-started-with-mailerlite-api) [Node.js](https://nodejs.org/en/) SDK. It is mostly a thin wrapper on [axios](https://github.com/axios/axios) that provides [authentication](https://developers

8 lines (7 loc) 284 B
import { AxiosInstance } from 'axios'; import { AccountWrap } from '../@types'; export default function (client: AxiosInstance): { getAccountRaw(): Promise<AccountWrap>; getAccount(): Promise<import("../@types").Account>; getMe(): Promise<import("../@types").Account>; };