UNPKG

nodevk-ts

Version:

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

8 lines (7 loc) 281 B
import EventHandler, { EventReturn } from "../EventHandler.js"; export interface DonutUnsubscribeEvent { user_id: number; } export default interface DonutUnsubscribeEventHandler extends EventHandler { (message: DonutUnsubscribeEvent): EventReturn<boolean | void>; }