@memo28.pro/notification
Version:
企业级消息通知解决方案 - 支持多平台消息推送的轻量级 TypeScript SDK
30 lines (29 loc) • 526 B
JavaScript
class s {
}
class r extends s {
constructor() {
super(...arguments), this.webhook = "", this.platform = "", this.msgBuilder = null;
}
getWebhook() {
return this.webhook;
}
setWebhook(t) {
return this.webhook = t, this;
}
getPlatform() {
return this.platform;
}
setPlatform(t) {
return this.platform = t, this;
}
setMessageBulder(t) {
return this.msgBuilder = t, this;
}
getMessageBulder() {
return this.msgBuilder;
}
}
export {
r as Base,
s as NotificationPlugin
};