vk-io
Version:
Modern VK API SDK for Node.js
10 lines (9 loc) • 404 B
TypeScript
import { IAPIOptions } from './api';
import { IUpdatesOptions } from './updates';
import { IUploadOptions } from './upload';
import { CallbackService } from './utils/callback-service';
export type AllowArray<T> = T | T[];
export type Constructor<T = object> = new (...args: any[]) => T;
export type VKOptions = IAPIOptions & IUpdatesOptions & IUploadOptions & {
callbackService?: CallbackService;
};