UNPKG

nodevk-ts

Version:

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

8 lines (7 loc) 286 B
import EventHandler, { EventReturn } from "../EventHandler.js"; export interface DonutWithdrawErrorEvent { reason: string; } export default interface DonutWithdrawErrorEventHandler extends EventHandler { (message: DonutWithdrawErrorEvent): EventReturn<boolean | void>; }