UNPKG

nodevk-ts

Version:

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

9 lines (8 loc) 304 B
import EventHandler, { EventReturn } from "../EventHandler.js"; export interface DonutWithdrawEvent { amount: number; amount_without_fee: number; } export default interface DonutWithdrawEventHandler extends EventHandler { (message: DonutWithdrawEvent): EventReturn<boolean | void>; }