UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

14 lines 465 B
import { validationMixin } from '../user-mixins/mod.js'; import { WechatyBase, } from './wechaty-base.js'; /** * Huan(202111): this is for solving the circyle dependency problem * * Construct a `WechatyImpl` based the `WechatyImplBase` with `validationMixin` * */ class WechatyImplBase extends validationMixin(WechatyBase)() { } class WechatyImpl extends validationMixin(WechatyImplBase)() { } export { WechatyImpl, }; //# sourceMappingURL=wechaty-impl.js.map