wildfire-im-sdk
Version:
野火IM SDK for Vue3 projects
16 lines (14 loc) • 322 B
JavaScript
/*
* Copyright (c) 2020 WildFireChat. All rights reserved.
*/
export default class MessageStatus {
static All = -1;
static Sending = 0;
static Sent = 1;
static SendFailure = 2;
static Mentioned = 3;
static AllMentioned = 4;
static Unread = 5;
static Readed = 6;
static Played = 7;
}