UNPKG

nodevk-ts

Version:

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

11 lines (10 loc) 313 B
import EventHandler, { EventReturn } from "./EventHandler.js"; export interface VKPayEvent { from_id: number; amount: number; description: string; date: number; } export default interface VKPayEventHandler extends EventHandler { (message: VKPayEvent): EventReturn<boolean | void>; }