verdnatura-chat/app/definitions/IRocketChatRecord.ts

11 lines
193 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export interface IRocketChatRecord {
_id?: string;
_updatedAt?: Date;
}
export type RocketChatRecordDeleted<T> = T &
IRocketChatRecord & {
_deletedAt: Date;
__collection__: string;
};