nodevk-ts
Version:
Simple Node.js module that allows you to interact with the VKontakte API.
9 lines (8 loc) • 449 B
TypeScript
import { DonutUnsubscribeEvent } from "./DonutUnsubscribeEventHandler.js";
import { DonutWithdrawEvent } from "./DonutWithdrawEventHandler.js";
import EventHandler, { EventReturn } from "../EventHandler.js";
export interface DonutSubscribeEvent extends DonutWithdrawEvent, DonutUnsubscribeEvent {
}
export default interface DonutSubscribeEventHandler extends EventHandler {
(message: DonutSubscribeEvent): EventReturn<boolean | void>;
}