verdnatura-chat/app/definitions/IServerHistory.ts

11 lines
202 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;
}
export type TServerHistory = IServerHistory & Model;