You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
interface ConversationAttributes {
|
|
profileName?: string;
|
|
members: Array<string>;
|
|
left: boolean;
|
|
expireTimer: number;
|
|
profileSharing: boolean;
|
|
secondaryStatus: boolean;
|
|
mentionedUs: boolean;
|
|
unreadCount: number;
|
|
isArchived: boolean;
|
|
active_at: number;
|
|
timestamp: number; // timestamp of what?
|
|
}
|
|
|
|
export interface ConversationModel
|
|
extends Backbone.Model<ConversationAttributes> {
|
|
idForLogging: () => string;
|
|
saveChangesToDB: () => Promise<void>;
|
|
notify: (message: MessageModel) => void;
|
|
isSessionResetReceived: () => boolean;
|
|
updateExpirationTimer: (
|
|
expireTimer: number | null,
|
|
source: string,
|
|
receivedAt: number,
|
|
options: object
|
|
) => void;
|
|
isPrivate: () => boolean;
|
|
isVerified: () => boolean;
|
|
toggleVerified: () => Promise<void>;
|
|
getProfile: (id: string) => Promise<any>;
|
|
getProfiles: () => Promise<any>;
|
|
setProfileKey: (key: string) => void;
|
|
isMe: () => boolean;
|
|
getRecipients: () => Array<string>;
|
|
getTitle: () => string;
|
|
onReadMessage: (message: MessageModel) => void;
|
|
updateTextInputState: () => void;
|
|
lastMessage: string;
|
|
}
|