wildfire-im-sdk
Version:
野火IM SDK for Vue3 projects
23 lines (16 loc) • 429 B
JavaScript
/*
* Copyright (c) 2020 WildFireChat. All rights reserved.
*/
import NotificationMessageContent from "./notificationMessageContent";
export default class ChatRoomWelcomeNotificationContent extends NotificationMessageContent {
welcome;
formatNotification(message) {
return this.welcome;
}
encode() {
return super.encode();
}
decode(payload) {
super.decode(payload);
}
}