verdnatura-chat/app/definitions/ISubscriptions.ts

34 lines
662 B
TypeScript
Raw Normal View History

2021-12-15 03:48:03 +00:00
import Model from '@nozbe/watermelondb/Model';
export interface ISubscriptions {
_id: string;
name: string;
fname: string;
rid: string;
unread: number;
tunread: string;
tunreadUser: string;
tunreadGroup: string;
2021-12-16 18:13:12 +00:00
joinCodeRequired: boolean;
alert: boolean;
userMentions: object;
ls: Date;
jitsiTimeout: number;
ignored: any;
announcement: string;
sysMes: string;
archived: string;
broadcast: string;
2021-12-16 23:57:58 +00:00
autoTranslateLanguage: string;
autoTranslate: boolean;
reactWhenReadOnly: boolean;
f: boolean;
ro: boolean;
blocked: boolean;
blocker: boolean;
muted: boolean;
roles: string;
2021-12-15 03:48:03 +00:00
}
export type TSubscriptionsModel = ISubscriptions & Model;