14 lines
244 B
TypeScript
14 lines
244 B
TypeScript
|
import Model from '@nozbe/watermelondb/Model';
|
||
|
|
||
|
import { IRoom } from './IRoom';
|
||
|
|
||
|
export interface ISubscriptions {
|
||
|
_id: string;
|
||
|
name: string;
|
||
|
fname: string;
|
||
|
rid: string;
|
||
|
unread: number;
|
||
|
}
|
||
|
|
||
|
export type ISubscriptionsModel = IRoom & Model;
|