UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

20 lines (14 loc) 468 B
import type { WechatyInterface } from './wechaty/mod.js' export type WechatyPluginUninstaller = () => void export type WechatyPluginReturn = void | WechatyPluginUninstaller export interface WechatyPlugin { (bot: WechatyInterface): WechatyPluginReturn } function isWechatyPluginUninstaller ( pluginReturn: WechatyPluginReturn, ): pluginReturn is WechatyPluginUninstaller { return typeof pluginReturn === 'function' } export { isWechatyPluginUninstaller, }