verdnatura-chat/app/definitions/IServerHistory.ts

11 lines
207 B
TypeScript
Raw Normal View History

2022-01-24 20:12:36 +00:00
import Model from '@nozbe/watermelondb/Model';
export interface IServerHistory {
id: string;
url: string;
username: string;
updatedAt: Date;
}
2022-02-28 18:00:47 +00:00
export type TServerHistoryModel = IServerHistory & Model;