UNPKG

nodevk-ts

Version:

Simple Node.js module that allows you to interact with the VKontakte API.

11 lines (10 loc) 584 B
import Session from "./Session/Session.js"; import GroupSession, { EventPriority } from "./Session/GroupSession.js"; import { getDefaultConfig } from "./Session/ConfigSession.js"; import { NewMessageEvent } from "./Events/NewMessageEventHandler.js"; import MessagesAPI from "./API/messages.js"; import PhotosAPI from "./API/photos.js"; import NodeVK from "./NodeVK.js"; import UsersAPI, { NameCase } from "./API/users.js"; export { NameCase, UsersAPI, PhotosAPI, MessagesAPI, Session, NewMessageEvent, GroupSession, EventPriority, getDefaultConfig }; export default NodeVK;