@strathberry/klaviyo-client
Version:
(Fork) Klaviyo API client for Node.js and browser
10 lines (9 loc) • 315 B
TypeScript
import { ProfilesKlaviyoApi } from './api/profiles';
import { ListsKlaviyoApi } from './api/lists';
export declare class KlaviyoApi {
private readonly apiKey;
private readonly token;
constructor(apiKey: string, token: string);
get Profiles(): ProfilesKlaviyoApi;
get Lists(): ListsKlaviyoApi;
}