vero-ts
Version:
Typescript Wrapper for getvero.com API
17 lines (16 loc) • 420 B
TypeScript
import { VeroUser } from "./types/users";
import { VeroEvent } from "./types/events";
export default class Vero {
private readonly authToken;
private readonly apiUrl;
Users: VeroUser;
Events: VeroEvent;
constructor(authToken: string);
private sendToVero;
private track;
private reidentify;
private editTags;
private unsubscribe;
private resubscribe;
private trackEvent;
}